When the user is going through the web site pages, if weneed to persist our objects so that we can access them from the different pages(Customer Object, Address Object or Invoice object for ex.) Is it better tostore those objects in public variables declared in module files or is itbetter to put our objects in session variables
or is there any other better practiceHiI need a calendar user control with out refresh.this code is refreshing the page for every action ...
By anonymous
Managing Multiple Excel incoming files? I have this situation. I have a client which have several lo...
By anonymous
Visual C++ 2005 Express MVP's and experience programmer's only please!... I need to get th...
By anonymous
I support a web server farm of about 80 machines, of which 35 are in Production at any given time. M...
By anonymous
I know this isn't the correct forum, but I didn't find the right one :)I have a small problem regard...
By gladhbrf
I'd like to submit a feature request to the microsoft monitors. The problem I'm having is ...
By anonymous
In VB6's deployment and package wizard it made a batch file that you could run to repackage you...
By anonymous
...
By anonymous, 1 Comments
I run into _weird_ situation when i tried to run my first asp.net v2 web application. I already made...
By morxs, 4 Comments
Hi, I am relatively new to NET Threading and learning from net examples and books I got a problem th...
By anonymous, 7 Comments
Hello, i'm wondering what is the difference between .NET Framework 1.1 and .NET Framework Redis...
By anonymous, 2 Comments
Hi, I am very confused regarding patterns in DOTNET. Please provide me details and types of patterns...
By anonymous, 2 Comments
Hello. I need to add a NEW method to a web service that was created several years ago using visual s...
By brgdotnet, 2 Comments
I have created a class library for use in an ASP.NET application. It is for a Domain Registration we...
By anonymous, 2 Comments
Hello guys.I need your help.I have a web site based on .net with ms sql. Someone else built this sit...
By thkalam, 6 Comments
It's better to store in the Session I would think.
A better way might be to store them in a Cache. And then retrieve it based on Session ID. Anytime you want to "edit" an object, you can check if it is already in the cache.
I dont know how this would scale though.
vze1r2ht | Sat, 05 Jan 2008 19:52:00 GMT |
thanks, how about if we wanna retrieve info according to the browser ID. let s say the user opens 2 instances of Internet Explorer, displaying the same page (Address.aspx for ex.). but he enters some information on the first instance and diferent information in the second instance of the browser.
Will we be able to put back the same info that beongs to the right IE instance when the user goes back and diplays the page next time.
not sure if my question makes sens.
Than ks a lot.
tutus | Sat, 05 Jan 2008 19:54:00 GMT |
thanks, how about if we wanna retrieve info according to the browser ID. let s say the user opens 2 instances of Internet Explorer, displaying the same page (Address.aspx for ex.). but he enters some information on the first instance and diferent information in the second instance of the browser.
Will we be able to put back the same info that beongs to the right IE instance when the user goes back and diplays the page next time.
not sure if my question makes sens.
Than ks a lot.
tutus | Sat, 05 Jan 2008 19:55:00 GMT |
If the user opens two instances of IE then it will have different sessions. But if they click New Window it will use the same one, and they will share a single session.
tasunder | Sat, 05 Jan 2008 19:56:00 GMT |
How can we open two instances of IE not sharing session (the context)?
-LV
ludovicovan | Sat, 05 Jan 2008 19:57:00 GMT |
ricardofrancisco | Sat, 05 Jan 2008 19:58:00 GMT |
Wow, this is new to me. Is this a new feature with IE 6 and up, or just had i a wrong idea about how the browser worked?
Thanks. -LV
ludovicovan | Sat, 05 Jan 2008 19:59:00 GMT |
Wrong idea I guess. It's been working that way since at least IE4.
tasunder | Sat, 05 Jan 2008 20:00:00 GMT |
You can also use cookies (either client-side or server-side).. It would be possible for you to detect if information has already been inputed and provide errorhandling logic (if necessary).
christiantoivola | Sat, 05 Jan 2008 20:01:00 GMT |
All I got after the pre-viwing mistake of trees was images of a building and that was very strong! ,
guest | Thurs, 22 Oct 2009 15:40:00 GMT |