how can i read a querystring of frame in frameset

  • Thread starter Thread starter Cantekin Guneser
  • Start date Start date
C

Cantekin Guneser

i have web application with frameset, i need to read querystring of a frame
from other frame in the frameset
thnks
 
i have web application with frameset, i need to read
querystring of a frame from other frame in the frameset

When you load the .aspx page with the frameset definition, add the desired
QueryString values to the Session object. Then, when you want to have access
to the values from the other pages, just pull them from the Session object.

There's no way to access the information otherwise... remember they are
*completely different requests*.

Hope that helps,
-JG
 
Back
Top