views:

57

answers:

1

My collegues facing one problem with IE8. they have one page for Product selection. now if user opens the page and selected one product as well as its some properties.. then he/she opes a new tab with same page... and selects a new product then the session used for page is shared by both the tab pages... so, can anybody provide solution to store data which can not be shared by 2 tabs in IE8

+2  A: 

If web programming is done properly, it works exactly as you described.

This is known as a REST model. The identical web pages in your two tabs are a result of two GET operations to the same URL. When you submit one of the tabs, you do a POST. If you change the information in the second tab and submit it, another POST occurs, updating the database with the information from the second tab.

It's by design.

http://tomayko.com/writings/rest-to-my-wife

Robert Harvey