Can I write something in default.asp to redirect a user to another URL like the following:
http://myweb.com/default2.asp/Product_ID=116
Thanks.
-----------------------------
This message is posted by http://Asp.ForumsZone.com
<%
Response.Redirect("defasult.asp?product_ID=" &
Request.Querystring("CIE_Point"))
%>
by no means rocket science.
________________________________________
I got bored with my old signature,
so I changed it
Atrax. MVP, IIS
http://rtfm.atrax.co.uk/
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
<%
Response.Redirect("defasult.asp?product_ID=" &
Request.Querystring("CIE_Point"))
%>
Save the above script in a file 'redirect.asp'
When you call this file, use
redirect.asp?CIE_Point=n
where n is the id number of the page you want to redirect to.
> <%
> Response.Redirect("defasult.asp?product_ID=" &
Request.Querystring("CIE_Point"))
> %>
eddie. really.
you need to learn some ASP.
www.asp101.com
www.learnasp.com
www.aspin.com
www.4guysfromrolla.com
www.aspfaq.com
www.aspfaqs.com
and so on...
________________________________________
I got bored with my old signature,
so I changed it
Atrax. MVP, IIS
http://rtfm.atrax.co.uk/
*** Sent via Developersdex http://www.developersdex.com ***