Pass Element value using vbcode

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MATTXtwo
    New Member
    • Sep 2006
    • 83

    Pass Element value using vbcode

    I want to get input element value in a form not using Javascritp like:
    Code:
    var NICNo=document.getElementById("NewICNo").value;
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    after you submit the form, you would get the input value like this:
    Code:
    dim NICNo
    NICNo = request.form("NewICNo")
    Does this answer your question?

    Jared

    Comment

    • MATTXtwo
      New Member
      • Sep 2006
      • 83

      #3
      Originally posted by jhardman
      after you submit the form, you would get the input value like this:
      Code:
      dim NICNo
      NICNo = request.form("NewICNo")
      Does this answer your question?

      Jared
      how about without request like document.getEle mntbyID something...

      Comment

      Working...