Urgent Help need
Hello,
I am getting an ununderstandable error in JSP.
<%@ page import="java.sql.*" errorPage="Error.jsp" %>
<jsp:useBean id="mab" scope="session" class="MstAgentBean"/>
<html>
<head>
<title>Transport Details Added</title>
</head>
<body>
<% String aname=request.getParameter("agentname");
String astation=request.getParameter("agentstation");
String adr1=request.getParameter("addr1");
String adr2=request.getParameter("addr2");
String aph1=request.getParameter("ph1");
String aph2=request.getParameter("ph2");
String aph3=request.getParameter("ph3");
String afx=request.getParameter("fax");
String atype=request.getParameter("agenttype");
mab.connect();
mab.addAgent(aname,astation,adr1,adr2,aph1,aph2,aph3,afx,atype);
mab.disconnect();
%>
</body>
</html>
Please tell what is wrong with this code.
I will be thankful if you can be online to help me in solving my problem,
Thanks.

