Forum Moderators: open
I am developing a banking Customer Service Representative (CSR) app in which different levels of CSRs have different pages at times. Rather than making up 3 completely different sets, If I knew what my current level was then I could select which next page to display when the CSR pressed a button?
A querystring is an extension to the URI:
somewhere.com/index.htm?name=value&name2=value2
Or using forms to post the information in the request header.
There are tons of resources out there on the net to help on these two subjects that go into much more detail than I could here.
This particular one is for ASP server-side processing
[btinternet.com...]
Another way, assuming you have some server-side scripting power (i.e. asp/jsp/php) is to use session variables to maintain state across pages.