There is an asp page where I enter my Rollno and click submit, the next page shows my result. Below is the source of the page form.
<form name="form1" method="post" action="Result.asp">
<input name="Rollno" type="text" id="RollNo" size="15" maxlength="15">
<input type="submit" name="Submit" value=" Search " onClick="return num();">
</form>
There is no way to see the result for all students, so I want to scroll through all the roll numbers to see my position. But I can not do this by writing search.asp? Rollno = 123456
How to send a request through a url so that I can iterate over all numbers?
source
share