I dont want Application Object,Viewstate,Cache,Session?? Please Help Me..
For single page "remember things", You can also use HiddenField, or just put a Button, LinkButton or ImageButton by settings its PostBack url to another page, you can directly fetch its value by referring from "PreviousPage.FindControl" method.
Suresh Sival...
Member
46 Points
28 Posts
Which State Management Technique is best to use in web application??
Dec 12, 2012 01:42 PM|LINK
I dont want Application Object,Viewstate,Cache,Session?? Please Help Me..
Waiting for your answer.
Thanks in advance.
Mikesdotnett...
All-Star
155645 Points
19985 Posts
Moderator
MVP
Re: Which State Management Technique is best to use in web application??
Dec 12, 2012 04:21 PM|LINK
That leaves form fields, querystring and cookies.
Web Pages CMS | My Site | Twitter
pratikkapadi...
Member
172 Points
32 Posts
Re: Which State Management Technique is best to use in web application??
Dec 12, 2012 04:31 PM|LINK
It depends how you want to manipulate
If you use data on same page use 'HIDDENFIELD' or VIEWSTATE
or if you want to use data on diff page can use querystring.
and for login information you can use SESSIONSTATE
Decker Dong ...
All-Star
118619 Points
18779 Posts
Re: Which State Management Technique is best to use in web application??
Dec 13, 2012 04:21 AM|LINK
For single page "remember things", You can also use HiddenField, or just put a Button, LinkButton or ImageButton by settings its PostBack url to another page, you can directly fetch its value by referring from "PreviousPage.FindControl" method.
Reguards!