Ask a Question related to ASP.NET General, Design and Development.
-
Munsifali Rashid #1
Re: Storing page information / viewstate between pages
Thanks for the reply.
Eventually I ended up using a serializable class, which holds the entered
data, and is stored in the session when the user navigates away from the
page. In the Page_Load subroutine, I use a try...catch...end try statement
to try and convert the session object into it's correct type. If the object
is found, the controls are populated, and the user sent to the next step in
the process. If it errors, the object is not set, and the user is at step
1.
Mun
"Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> wrote in message
news:u0dehdZODHA.1624@tk2msftngp13.phx.gbl...The> Instead of redirecting, use Server.Transfer to get to the form handler.> original Page class called will be in the HttpContext as the "Handler"
> object. You can also add your ViewState items to the Context.Items
> Collection prior to transferring, in order to see them in the other page.
>
> HTH,
>
> Kevin Spencer
> Microsoft FrontPage MVP
> Internet Developer
> [url]http://www.takempis.com[/url]
> Big things are made up of
> lots of Little things.
Munsifali Rashid Guest
-
Storing server side information into a javasript array
Is there a way to loop throw a query and store on of the fields contents in an array? what I want to do is have a form that will fill in an input... -
storing objects in ViewState
Hello, I'm developing a web custom control and am trying to store an instance of a class in the ViewState and keep getting an exception: "The... -
enableviewstate=false, still viewstate information is added
Hi Even though the Viewstate has been disabled, ASP.NET still uses about twenty bytes for Viewstate. Not only can you disable Viewstate at the... -
Request for guidance storing of information in ASP.Net
I am new to the asp.net application building and I have read the information regarding the storing of information using session vs cookies vs... -
Newbie question on Viewstate information
Hi All, I am new to ASP.NET . I have developed an sample application . My problem is that all webpages are very very slow.. and when i see...



Reply With Quote

