This is a discussion on "request.querystring" within the Classic ASP section. This forum, and the thread "request.querystring are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
request.querystring
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
request.querystring
I have the asp code passing a URL and am using a request.querystring to get it, but for some reason it is not picking it up. Is this the correct way of doing it or is there another way it should be done?
Thanks, breeze76 |
|
|
|
#2
|
||||
|
||||
|
Can you please post your code?
__________________
Click the 'Thanks!' button if this post has helped you Rob - Webforumz Founder
Last Blog Entry: Creative Labs threaten developer over home made drivers.... (Apr 1st, 2008)
|
|
#3
|
|||
|
|||
|
Quote:
<a href="ListView_rssfeeds.asp?feed_id=<% =rs("RSS_ID")%>&feedurl=<% =rs("url")%>&feedtitle=<% =rs("title")%>" Here is the Address info in IE: http://MySite/mwpxnext/ListView_rssf...Press%20Review Here is the request.querystring code: strurl = request.querystring ("feed_url") As you can see, it is passing everything but I just can not get it right for some reason. I am doing a response.write for all three and the only one I am not getting is the "url" one. Any help would be greatly appreciated.. |
|
#4
|
||||
|
||||
|
You have made a pretty basic mistake here... use this instead:
strurl = request.querystring ("feedurl") Thats what you need!!
__________________
Click the 'Thanks!' button if this post has helped you Rob - Webforumz Founder
Last Blog Entry: Creative Labs threaten developer over home made drivers.... (Apr 1st, 2008)
|
|
#5
|
|||
|
|||
|
Quote:
Thanks...!! |
|
#6
|
|||
|
|||
|
isnt it allways the case lol
|
![]() |
| Tags |
| requestquerystring |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Passing wildcards in a querystring | jayaime | Classic ASP | 0 | Oct 11th, 2006 19:02 |
| var = Request.QueryString(item) - why doesn't this work?! | Donny Bahama | Classic ASP | 7 | Jun 17th, 2006 08:43 |
| PLEASE HELP - Passing Variables in Querystring | just_the_basix | Classic ASP | 40 | Sep 3rd, 2004 10:46 |
| Selecting database records using the QueryString | courtjester | Classic ASP | 10 | Aug 27th, 2004 19:52 |