Passing variables between pages using QueryString
-
HI i'm using VS 2005 and i need to use QueryString to pass variables between paged but its visible is there any why to Encrypt this variable value in URL address bar thanks a lot
Do not use QueryString........ Put it is a session and transfer to other pages. Happy Programming.
Sanjeev
-
Do not use QueryString........ Put it is a session and transfer to other pages. Happy Programming.
Sanjeev
-
OK, im using context.item["x"] and server.transfer("test.aspx",true) but it will effect RAM and application Performance? And is there any disadvantages? And as I know the professional programmer don’t prefer to use session ! thanks a lot
Hi Naif_Prof, Session object has improved a lot from classic ASP to ASP.NET 1.1 and especially 2.0. I believe Professional programmer do use session object these days. If you do not want to use session object, you have two options. a) Use query string..........but all the input information is visible to users in the URL. b) You can use cross page posting which is availabe in 2.0... you can check in the google. Or, Go to Fritz Onion webcast in webcasts series for ASP.NET 1.1 (Control based Programming ASP.NET), he talks about Multipage issues. Hope helped.
Sanjeev