I have one application in which I want to pass data between Pages (Views) without sessions. Actually I want to apply some settings to all the pages using query string.
For example if my link is like “http://example.com?data=test1“, then I want to append this query string to all the link there after and if there is no query string then normal flow.
I was thinking if there is any way that if we get the query string in any link for the web application then some application level user specific property can be set which can be used for subsequent pages.
Thanks,
Ashwani
You can get the query string using the
and on your links to the other page you can send it.
Here is an idea of how you can find and change your page:
I do not suggest it how ever, and I think that you must find some other way to avoid to manipulate all your links…