
I created a spring project. I created a jsp with the following code
<%@ include file="/WEB-INF/jsp/include.jsp"%>
<form:form name="loginForm" modelAttribute="loginForm" method="get">
<table>
<tr>
<td><b>UserName:</b></td>
<td> <form:input path="username"/>
</td>
</tr>
<tr>
<td><b>Password:</b></td>
<td><form:input path="password"/>
</tr>
<tr>
<td><b>Location:</b></td>
<td><form:radiobutton path="location" value="Mepz" />Mepz</td>
<td><form:radiobutton path="location" value="TCO"/>TCO </td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="login" align="middle"></td>
</tr>
</table>
</form:form>
When i run the program I am gettting HTTP 500 internal error.How to solve this
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.