|
-
Mar 24th, 2005, 04:39 PM
#1
Thread Starter
Fanatic Member
Dynamic href
I have some links in my aspx pages that need to be dynamic. Not really the link, but the parameters in the link.
the link will need to be <a href="page.html?tokenID="></a>
but the tokenid parameter will need to be pulled from a paramter of the same name in the current url. how can i accomplish this?
Thank you guys!
-
Mar 24th, 2005, 04:45 PM
#2
Addicted Member
Re: Dynamic href
<a href="page.html?tokenid=<%= request.querystring("tokenid") %>">
Just like that.
-
Mar 24th, 2005, 04:54 PM
#3
Thread Starter
Fanatic Member
Re: Dynamic href
Ahhh i was doing it like this
<a href="page.html?tokenid=<%Response.Write( request.querystring("tokenid") )%>">
i'll try this. thanks!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|