Forum Moderators: open
I am trying to send variables through to a .aspx page. Trying not to use Session, Query String or hidden fields.
Trying to work with the submit button.
Basically I am trying to send info to another page with out using the above methods...
is this possible or not.... I am sure it can be done...But not sure how
Thanks…
You could use the context variable.
One thing I have done is create a public class in a separate module with public variables in it. Clicking a button on the first form ( not a submit button, just a plain button with events) writes a value to the variable in the other module. The second page or any other module can then read it.
I have used this idea to lock access to variables and databases when running asynchronous threads that all want to have a look at a dynamic value.