|
-
Jul 30th, 2003, 10:43 PM
#1
Thread Starter
yay gay
how to pass arguments to a web control
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 ?
\m/  \m/
-
Jul 30th, 2003, 11:13 PM
#2
Thread Starter
yay gay
never mind..in this situation i can perfectly use the querystring thing
\m/  \m/
-
Jul 31st, 2003, 08:22 AM
#3
Lively Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|