Results 1 to 3 of 3

Thread: frameset/request.querystring question

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Nov 2003
    Location
    Gent
    Posts
    166

    frameset/request.querystring question

    *i wanted to make a frameset with the frames set up like this:

    Code:
    <frame name="main" src="Webform1.aspx?var=" & <%request.querystring("var")%>
    it doesn't pass the querystringvalue to the querystring of the new page as i had hoped...can i use request.querystring there?

    is there any way i can read the parameters from the framesets querystring and directly use it in the querystring for one of the frames?

    i really hope so.....
    never argue with an idiot, he will bring you down to his level and will beat you through experience

  2. #2
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    Re: frameset/request.querystring question

    Try:
    Code:
    <frame name="main" src="Webform1.aspx?var=<%= request.querystring("var") %>">
    DJ

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Nov 2003
    Location
    Gent
    Posts
    166

    Re: frameset/request.querystring question

    thanx! syntax was wrong...
    never argue with an idiot, he will bring you down to his level and will beat you through experience

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width