Posted on: 5/27/2014 7:20:44 PM | Views : 429

We have a page that is sent to some of our clients as a link in an email the link includes a few querystring fields that populate on the page that opens when the link is clicked. When they click submit the data is saved to our ONLINE SQL SERVER db. In a couple of acurences the same querystring information is going into the table for different people.
My question is this; is it's possible that when dirrent people click the link to open the page from thier own emails the same info is populated from the querystring?
My understanding is that each time you click a link to open a page it is a NEW instance of the page and would not have anything left over from a previous submit.
Here are my querystrings, this is in the page load event.
If Not Page.IsPostBack Then 'load fields for the client hfclient_ID.Value = Request.QueryString("client_ID") hfAccount_ID.Value = Reque ...

Go to the complete details ...