Tagged Questions

14
votes
5answers
6k views

Cache VS Session VS cookies?

What are the do's and don'ts about Cache VS Session VS Cookies? For example: Im using Session variables a lot and have sometimes problem in a booking-application when users starts to order products ...
6
votes
4answers
2k views

ASP.NET MVC - Is there a way to simulate a ViewState?

I have the following situation... In a certain View, the user must select the initial hour, the final hour and the weekday. But, I can't save this informations to DB 'cause I need to save my whole ...
4
votes
4answers
179 views

How to keep data through postbacks?

I am working on a ASP.NET/C# Website. I am reading data from a database, saving it in a Dictionary Dictionary<string, decimal> Results and then binding it to a ASP.NET chart ...
2
votes
3answers
103 views

ASP.Net Web Forms state management advice needed

In VS 2010 the ASP.Net Web Application template creates a master page with two content pages: Home and About. State is lost as you navigate to a new tab. As a windows developer I'm struggling with how ...
1
vote
1answer
88 views

ASP.NET SQL Server state management - get appid

I am using SQL Server for state management for my ASP.NET application. In the table ASPStateTempSessions, there is sessionid column which is sessionid + appid. I want to know how can I determine the ...
1
vote
1answer
87 views

How cookie creation works?

I am working on Cookies. I followed http://asp.net-tutorials.com/state/cookies/ tutorial. Here Page_Load checks for BackgroundColor cookie and if it exists it will fetch the value and set the ...
1
vote
1answer
95 views

preserve value of hidden variable over round trips

I need to maintain a unique identifier over server round trips. This is applicable for any pages in the website. Hence the value of the unique identifier is stored inside a from in a hidden variable ...
1
vote
2answers
236 views

how to learn best practices for state management in asp.net

I am new in programming ,specially in web base programming. i want to learn best practices about state management techniques. I mean when we have to create sessions?, when to use sessions how to ...
1
vote
1answer
118 views

Bring the data module to work with — pass-Store-use a connection inside a reusable data module

I want to seperate the data module of a site into an assembly ( a single dll file ) , What is the best way to get-store and pass the ConnectionString of the site in dealing with the web application . ...
0
votes
1answer
43 views

Best state-management for multi language support?

I have a small web application that has multi-language support (en, de, it, fr, nl, sl, hr). This application is accessed constantly from a lot of users that use it for a short time (the time to fill ...
0
votes
0answers
76 views

SaveViewState() in custom control won't execute

I am creating my own custom control which has a collection property named "Columns". I have problem with managing the state of the property, I implemented ...
-1
votes
2answers
241 views

How to maintain state of a control inside a gridview which has paging enabled?

I have a gridview of 4 columns including a column as Approve. Approve is having a checkbox which will repeat for all the rows of the dataset after binding. I have made allowpaging = true & ...