Forum Moderators: open

Message Too Old, No Replies

Pass value to URL

         

deepali2005

6:24 am on Oct 19, 2005 (gmt 0)

10+ Year Member



I have an ASP.NET application in which i just want to pass the details from .aspx page to some remote URL where the remote URL end contains asp form. For e.g my website is <snip> and have a CustomerDetails.aspx page from which i just need to pass the some values from it to remote URL http://example.com/adduser.asp. ;
So how to implement the same. I had used Server.Transfer() but it always give me error that virtual path required. PLEASE HELP ME AS SOON AS POSSIBLE.....

[edited by: engine at 3:11 pm (utc) on Oct. 25, 2005]
[edit reason] TOS [/edit]

Krapulator

3:57 am on Oct 25, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can only server.transfer to files on your own server

You can use response.redirect eg:

<%
response.redirect("http://www.example.com/?string=whatever")
%>