Requesting a textbox value from another frame

samtediou

New member
Joined
Feb 3, 2005
Messages
2
Programming Experience
3-5
Hello all,

Does anyone have a link on how to request a value from a textbox from another frame?

I've got a header.htm and main.htm, and I do not want to store the textbox value in my session, I would just like to store the value into a variable in main from the header.

Thanks

Samtediou
 
make a global variable instead of a session varible

add a module to the project
in that module
Friend strString as string


then assign the value of the textbox to that variable so you can use it in other sections of the app
 
Thanks for the quick reply! I'm already using globals, and with the high volume on the site, I'm running into some global variable mixups among different users.

Is there a way to store and access a value in a textbox on a header (in a different frame)?

Samtediou
 
Back
Top