PDA

View Full Version : SSL and Server.Transfer


aspq
08-29-2004, 01:58 AM
HI,
It does pass by setting preserved boolean value to True. I can pass values to other pages and it works fine with http:// path but when I apply https:// to secure the page it starts to play funny!

aspq
08-29-2004, 02:54 AM
Hi,

Is it possible to pass form field variables from one aspx page to an other aspx page using:

Server.Transfer("https://..",true)

If not, how can I get around it?

Thanks
(sorry for same posting at the wrong place)

steurm
08-29-2004, 12:43 PM
server.transfer will not pass form fields by default I believe. One of the possibilities is putting your fields and values in the querystring, however that depends of the amount of data.

--
Steurm
www.steurm.net/steurm

theprince
09-02-2004, 04:38 AM
Hi,

by the context.handler

we can transfer current page viewstate,form values value to any other page

if you can't transfer form values, just store your values to viewstate

and then transfer to your target page

there you can get by the context.handler object

by
the king

aspq
09-06-2004, 05:48 AM
Thanks,

I manage it using relative path.