
April 14th, 2000, 11:20 AM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
<i><b>Originally posted by : Pardeep Bhatia (pardeep.bhatia@usa.net)</b></i><br /><br />As per your question to access the form elements by using vbscript.You can access the form elements by using vbscript as follows.Let say you want to access name from a form.then your form name field must have been named say 'name'i.e<input type=text name='name'...><br /> <br />in vbscript write<br />request.form("name")<br />this way you will access the form elements.<br />for seeing response type<br />response.write("name")<br />it will display the name on your browser.<br />------------<br />aruna at 4/13/2000 5:20:28 AM<br /><br />How to access the form elements through the ASP code.<br />Between the delimiters the elements are not being recognised.<br />The functions written in <script language=vbscript> tag are not being <br />accessed between the delimiters.<br />
|