![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi, I have a problem, I have been doing a website and it needs to be made secure, so we have installed versign in the webserver. Now the problem is I have a set of .aspx pages which i will transfer data from page to another page using server.transfer. To change the protocol from http to https i just parse with replace function like the one below str_REFERRER = Replace(Request.ServerVariables("HTTP_REFERER"), "Travel_Info.aspx", "") If str_REFERRER <> "" Then str_REFERRER = Replace(str_REFERRER, "http://", "https://") str_REFERRER = Replace(str_REFERRER, "User_Entry.aspx?TXR=GRE", "") Response.Redirect(str_REFERRER + "Details.aspx?" + str) end if I have used Response.redirect to do this but when i use response.redirect the Form data like text box values,context.items etc. cannot be transferred except if we use server.transfer then the transfer of values is possible but it gives error saying "INVALID CHILD REQUEST...." error when i change the protocol to https with server.transfer server.transfer(https://www.mysite.com/details.aspx) is not possible? pls give me solution of how to use server.transfer with https protocol so that all my form values also get transfer. |
#3
| |||
| |||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |