I get the error that object is closed and must be open before I can proceed.
The code often looks something like:-
<%
VB code
objRS is used here but never explicitly closed
%>
<html> code with some
<%
VB code
objRs.MoveFirst() <-- these errors happen here where the object isnt explicitly being openned again
%>
</html>
Now from what I understand vb automatically closes the object once it sees the end tag (%>) and to use the object again later in the code I must reopen the object.
Now do I have to reopen the object or is there a better way to go about this? I really need help on this.
Go to the complete details ...