request.querystring and frames problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have a page with multiple frames. The body frame has an href as follows:

http://www.fincalc.com/BUD_02.asp?id=12345&css=demo

BUD_02.asp has code that tries to read the id value from the querystring as follows:

dim id
id = Request.QueryString("id")

This code does not get the value "12345" as I thought it would. It is empty. Can someone explain to me what I need to do to get the id value?

Thanks
 
Turns out the code mentioned was working. The problem was on submitting the page that followed. Upon submitting, the "id", which was previously stored in a session variable had been wiped out. I changed the browser settings to allow third-party cookies and that seemed to fix it.
 
Back
Top