how to pass arguments to a web control without using url arguments? like i want that my web form says to a web control its using what is the file the web control should proccess...how could i do this without the old filename?&file=xxxxxxxx.bmp ?
Printable View
how to pass arguments to a web control without using url arguments? like i want that my web form says to a web control its using what is the file the web control should proccess...how could i do this without the old filename?&file=xxxxxxxx.bmp ?
never mind..in this situation i can perfectly use the querystring thing
Or session objects....
First page :
Page load :
dim iQty as integer = 15
session("Test") = iQty
Second Page:
Page load :
dim iQty as integer
iQty = session("Test")
response.write iqty
---------------
HTh,
Bjorn