Results 1 to 3 of 3

Thread: how to pass arguments to a web control

  1. #1

    Thread Starter
    yay gay PT Exorcist's Avatar
    Join Date
    Apr 2002
    Location
    . . . my reason of shame
    Posts
    2,729

    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/

  2. #2

    Thread Starter
    yay gay PT Exorcist's Avatar
    Join Date
    Apr 2002
    Location
    . . . my reason of shame
    Posts
    2,729
    never mind..in this situation i can perfectly use the querystring thing
    \m/\m/

  3. #3
    Lively Member
    Join Date
    Sep 2002
    Location
    Belgium
    Posts
    99
    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
  •  



Click Here to Expand Forum to Full Width