abhay1234 0 Light Poster

i wish to create a cookie for an html form. I wish to get value from textbox(how do i do this). i wish to get the values displayed when i click the submit button

my code

<html>
<body>
<form>
<button type="button" name="rollno">rollno</button>
<input type="text" name="rollno">
<br>
<button type="button" name="name">name</button>
<input type="text" name="name"><br>
<button type="button" name="college"> college</button>
<input type="text" name="college"><br>
<button type="button"name="subject">subject</button>
<input type="text" name="subject"><br>

<button type=submit value="submit">create</button>
<button type=reset value="reset">clear</button>
</form>
<% response.cookies("rollno")=rollno
rollno=Request.Cookies("rollno")
response.write("hello here it is" &rollno)
%>

</body>
</html>