Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
2answers
1k views

Backbone.js state management / view initialization based on url fragment

I'm trying to keep track of the state in this app using Backbone.js: I have a "ChartAppModel" with a set of defaults: ChartAppModel = Backbone.Model.extend({ defaults: { countries : [], ...
5
votes
2answers
110 views

Any math approaches to state management of complex objects?

I usually use ASP.net web forms for GUI, maybe one of most "stateful" technologies. But it applies to any technology which has states. Sometimes forms are tricky and complex, with >30 elements and > 3 ...
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 ...
2
votes
5answers
124 views

Is it a good idea to avoid state management techniques in ASP.Net MVC?

Is it a good idea to avoid state management techniques(session, cookies etc) in ASP.Net MVC 3.0? If yes then is there any other alternatives available except TempData?
2
votes
1answer
229 views

Best Practices for Storing JSON in URL Hash / Fragment

I'm building a single-page AJAX application, and would like to under certain circumstances store state in JSON after the URL hash (#). I've seen a couple other sites do this, but I'm hoping to get ...
2
votes
7answers
278 views

Session value in Javascript

How to read and write session values in javascript
2
votes
2answers
1k views

Android. Save Instance State for Dialogs?

I wonder what is the right way to implement this? Could anybody advice whether my solution is correct? So: Activity is created User clicks on button and dialog is launched (Dialog, not dialog ...
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
1answer
205 views

Implementing 1-page JavaScript web app using the principles of MVC

How would you implement this app in JavaScript using principles of MVC? As you can see, the app basically has 3 views: "Sidebar", "Visualization" & "Timeslider". The underlying model must keep ...
1
vote
2answers
127 views

List Box Multiple Selected values

how to pass multiple selected list box values which are in a session in one ascx page to another ascx page Code is NameObjectCollection eeSearchString=new NameObjectCollection(); ...
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
2answers
363 views

WPF - MVVM Screen Management

Imagine you have a complex data object. It was complex enough that to edit the various properties of the object, it would be best for the user to have multiple screens. It's essentially a shopping ...
1
vote
1answer
965 views

ExtJs 3.3 GridPanel not restoring column settings with the Buffering Http Provider anymore

I updated to Ext 3.3 and suddenly my GridPanel's column "width" and "hidden" settings are not restored anymore, they remain at their default settings. I use the most recent version of the Buffering ...
1
vote
0answers
102 views

NHibernate auditing in disconnected mode

I'm developing an app with a Silverlight UI, transferring my domain objects over WCF and persisting them via NHibernate. I'm therefore working with NHibernate in a disconnected mode. I'm already ...
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
0answers
9 views

How do I save all my game objects with NSCoder in one file?

I am writing a game where I want to save everything to a user's "profile.sav" file, however in the examples I've seen they usually save class objects in individual .sav files. Here's an example. My ...
0
votes
0answers
64 views

Render common view using multiple actions in asp.net MVC 3

I have an asp.net mvc 3 page. I want to show the list of users at fisrt time with pagination(which is fine, and done). but need to filter data according to selection of user group from list of groups. ...
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
1answer
305 views

UItableViewCell Custom ContentView with Multiple labels and Need to Preserve selection

I have the uitableview with multiple uilabels in each cell like a grid view. I added the uigesturerecognizer to do some action on each of these labels(text background will change). Everything is ...
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 ...
0
votes
2answers
58 views

what happen to web application if database crashes and how to maintain site without user knowing it?

Building a .net web application, so I just want to know what happens to web application if database crashes? how to maintain site without user knowing what happened? how to handle the data ...
0
votes
3answers
271 views

Transfer request from one IIS 7 server to another

Is there any way to configure IIS 7 to transfer a request to another server in a similar way to how the Server.Transfer() method works in ASP.NET.
0
votes
1answer
145 views

State Management of javascript conent in MVC

I am using asp.net MVC2. i am facing a problem in state management of javascript contents. i have got a image map in which on click on various part of image i am showing same page (redirect with ...
0
votes
2answers
32 views

Does anyone else think instance variables are problematic in database-backed applications?

It occurs to me that state control in languages like C# is not well supported. By this, I mean, it is left upto the programmer to manage the state of in-memory objects. A common use-case is that ...
0
votes
4answers
71 views

State management issue

I have three websites which are pointed to, by different domain names. The issue is: If a user logs in at one domain, it is not reflected in the other two domains, and similarly for logout. How to ...
-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 & ...