You can have both the buttons with type="submit" on single form.
Then on top of your page check which value comes on form submit.
Code:
<%
IF request.form("ADD") = "itsvalue" Then
'code to add student
END
IF request.form("View") = "itsvalue" Then
'code to View report
END
%>
"itsvalue" refers to the value that you defined in the value attribute of the <input> tag.
This is a sample of code that should help you.
_________________________
- Vijay G
Strive for Perfection