pass parameters between pages
-
hi ........ i'm a new ASP.Net programmer and i want to know how to pass parameters between pages, such as login information.
The best way is to use the Session variable (Session["username"]="whatever" saves the "whatever" string and when you pass to another page you can retrieve it). For detailed info, google it. Alex.
-
hi ........ i'm a new ASP.Net programmer and i want to know how to pass parameters between pages, such as login information.
-
hi ........ i'm a new ASP.Net programmer and i want to know how to pass parameters between pages, such as login information.
-
hi ........ i'm a new ASP.Net programmer and i want to know how to pass parameters between pages, such as login information.
Session object are used as intermediate storage, or use a query string. Or you can create a public property on the first form and access it through the HttpContext.Handler object from the second form. ---------- user9 A student knows little about a lot. A professor knows a lot about little. I know everything about nothing.