How to set a value to application variable from a text field.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • samuelpaulc
    New Member
    • Feb 2007
    • 8

    How to set a value to application variable from a text field.

    Hi all,
    I need to set an application variable to the value given by user from a form which calls itself.
    Thanks in advance.
  • shweta123
    Recognized Expert Contributor
    • Nov 2006
    • 692

    #2
    Hi,

    Hope so you still need this,


    if Request.Form("t extbox1") <> "" then
    Application(var iablename) = Request.Form("t extbox1")
    end if

    Comment

    Working...