I have below scenario
1)Customer login to my website,
2)then he opened new page and added information on that.
3)Before saving the information of that page, he copied the URL and paste on another tab of same browser and enter the information.
4)again he come back to first tab and save the data, we are using session to save the data, so it is conflicted with another tab.
What i want is to prevent user to open same URL in different tab.
We have tried with Hidden field <asp:HiddenField runat="server" ID="hfId" value="" />
to solve the problem and it is working, but we don't know its right or wrong?, Please suggest.
Like bank websites, If we tried to copy URL after logged in into different tabs then it's session expired.
Please give us direction.