SSL and Server.Transfer

Discussion in 'ASP.NET / ASP.NET Core' started by aspq, Aug 29, 2004.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. 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!
     
  2. 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)
     
  3. 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
     
  4. 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
     
  5. Thanks,

    I manage it using relative path.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page