|
-
Nov 21st, 2002, 05:08 AM
#1
Thread Starter
Addicted Member
Variables in Query Strings
Hi does anyone know how to include a variable into querystring.
i know this is wrong:
Dim FirstName
FirstName = Request.Form("FirstName")
<a href="aspconnect.asp?FirstName=FirstName">Link</a>
Cheers
-
Nov 21st, 2002, 05:32 AM
#2
Addicted Member
If I understood correctly this should be what you are looking for
Code:
<%
Dim FirstName
FirstName = Request.Form("FirstName")
%>
<a href="aspconnect.asp?FirstName=<% = FirstName %>">Link</a>
-
Nov 21st, 2002, 08:35 AM
#3
Thread Starter
Addicted Member
Yeah thanks.
I just couldn't remember it.
Haven't asp in a long time
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
|