Try using JSP wid javascript....
hope the example below helps.....
<%@ page lanaguage="java">
<html>
<head>
<script language="javascript">
function formSubmit(){
document.FormName.action = "SampleServlet"
document.FormName.method = "POST"
document.FormName.submit()
}
</script>
</head>
<body>
<form name="FormName">
<input name="uname" type="text">
<input name="pwd" type="text">
<a href="javascript:formSubmit()">SUBMIT</a>
</form>
</body>
</html>
REGARDS,
RaHuL