Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
8answers
3k views

Why would you ever use asp.net's ViewState storage object over the Session storage object?

Other than because session storage is session-global to more than one page, why would you ever want to use the viewstate to hold values? It seems kind of ridiculous to send any kind of information ...
2
votes
1answer
113 views

Need help using SingleFrameApplication to save sessions

I have a program that need to save all of the things in JTextFields, JComboBoxes, etc. I came upon an example that lead me to believe i could achieve this with the SingleFrameApplication class. ...
2
votes
1answer
162 views

Different types of browser storage

From this slideshow http://slides.html5rocks.com/#slide8 and from Chrome: View > Developer > Developer Tools > Storage tab, I learned that there are at least 4 types of browser storage: Databases, ...
1
vote
1answer
46 views

session storage and performance

I have an object that contains data relative to the user's UI. For the moment, the data comes in the form of json, I run JSON.parse to evaluate the object and generate some HTML accordingly. I'm ...
1
vote
4answers
92 views

determine whether Web Storage is supported or not

I need to verify that Web Storage API is supported and available (it may be disabled due to security issues). So, I thought it would suffice to check whether the type sessionStorage or localStorage ...
1
vote
1answer
90 views

Html5 sessionStorage over server-session?

I don't understand which is the best option for session control. I know user/password/login must be stored at server session by security reasons, but and the other things I want to storage? If I ...
1
vote
1answer
140 views

Where does Firefox store the sessionStorage content

I am trying to find out where Firefox stores the sessionStorage content but have been unable to find so. I am expecting it to be in a SqLite database like the localStorage content is stored but I have ...
1
vote
3answers
149 views

Is there a wrapper for HTML5 sessionStorage that provides a good compatability implementation?

We would like to use the HTML5 sessionStorage (or something like it) in a new project but you can't rely on it on some browsers. There's this project (http://code.google.com/p/sessionstorage/) which ...
1
vote
1answer
96 views

How Can I switch the session storage according to the client on Ruby on Rails 2.3.5

I have a question about sessions on ruby-on-rails. We have a several options about session storage such as cookie, active_record_store, etc.. I primarily use the cookie storage, but, there are some ...
0
votes
0answers
36 views

Is Modernizr creating a new session storage table/object on every page request?

While debugging an application earlier, I noticed in Web Inspector that it appears a new session storage object (table?) was being created on every request. Screenshot: You'll notice under ...
0
votes
2answers
44 views

ajax and local/session storage pattern

I'm building a web app that uses ajax to communicate with the server. Basically, the user requests a record, it comes back in json, it's added to the DOM and the user makes changes to it. When the ...
0
votes
1answer
71 views

HTML5 sessionStorage compatibility with mobile browser

I want to know the compatibility of HTML5 or more specific sessionStorage in different mobile Browser. I want to know about below browsers: 1. iOS 3.2 onwards 2. Android 2.1 - 2.3 3. Windows phone 7 - ...
0
votes
2answers
65 views

can I inject data directly into session storage from server side selected data?

I'm wondering if it is possible to do a server side select on a mysql database and inject the result directly into HTML5 session storage without using ajax. The scenario is as follows: Assume that OK ...
0
votes
2answers
570 views

Save Javascript objects in sessionStorage

SessionStorage and LocalStorage allows to save key/value pairs in a web browser. The value must be a string, and save js objects is not trivial. var user = {'name':'John'}; ...
0
votes
2answers
794 views

local storage vs. session storage

Apart being non persistent and scoped only to the current window are there any benefits performance, data access etc. on Session Storage over Local Storage?
0
votes
0answers
179 views

issues with sessionStorage when the browser runs for a long time or session is resumed

This is quite annoying and possibly a bug in FireFox 4 and its ability to restore sessions or persist them. A simple sessionStorage.setItem() call works and so do all the other storage methods - at ...
0
votes
1answer
228 views

Saving context.getImageData to a sessionStorage with html5?

I try this, but I don't succeed. Is there a posibility to save that object or their values and then use it , e.g. for a redraw?