PDA

View Full Version : request querystring using a frameset


jeskel
09-18-2003, 10:14 AM
Hi everyone, 'hope you're all having a good week.

I was wondering how to use a request.querystring to get values needed if using a framset. Is it possible to get the values wanted without them to appear in the url, like my url would remain: www.mysite.com (default.html or index.html just setting up the frameset) and still get the values needed?

thanx a lot

glenngv
09-18-2003, 10:24 AM
Use POST request instead and retrieve the data using Request.Form

jeskel
09-18-2003, 10:54 AM
yeah but the problem IS that i have to use a link like <a href="mypage.asp?myvar=blablabla"> and get the blablabla... that's why I'm asking that question...

glenngv
09-18-2003, 11:04 AM
If you are using frames and you have this request "mypage.asp?myvar=blablabla", you can get the querystring values as you normally would and that URL won't show in the address bar. So what seems to be your problem?

jeskel
09-18-2003, 02:29 PM
well...... it's just easier than what I thought.... Sorry to have bothered you. I was trying complicated stuff insted of doing it the easiest way:o thanx Glen for help...