Hyperlink

Rani

Well-known member
Joined
Nov 19, 2005
Messages
71
Programming Experience
Beginner
how do i call a procedure clickme() using a hyperlink, before using the hyperlink to navigate to the next page?

I have a hyperlink called NEXT on a form.
I want to bring over all the form's text field values in a session variable to the next page.
but before doing that, when i click the hyperlink i want to call the procedure to get the field values.
The procedure name is clickme()


Thanks/Rani
 
i'm assumiming you're using a LinkLabel control for this, in which all you need to do is call the clickme() sub before saving the info in the session var and moving on to the next page
 
It seems that you may want to look into using the Wizard control.

If the Wizard control won't work in your case then, as JuggaloBrotha suggest, a LinkButton would be the way to go. Create a click event handler for the LinkLabel, set the session variables, then redirect to the next page.
 
Back
Top