here is my code:
<form method="POST" action="">
<div class="col-lg-4 pull-right">
<div class="form-group">
<label for="txtUserId">ID:</label>
<input type="text" name="txtUserId" id="txtUserId" class="form-control input-lg" />
</div>
<div class="form-group">
<label for="txtUserName">NAME:</label>
<input type="text" name="txtUserName" id="txtUserName" class="form-control input-lg" />
</div>
<div class="form-group">
<label for="txtUserLastName">LastName:</label>
<input type="text" name="txtUserLastName" id="txtUserLastName" class="form-control input-lg" />
</div>
</div>
</form>
First question: Can we handle post request at .jsp file? or we must get it from java class only?
Second question: how can check which button is clicked?
like: if(isset($_POST['btnSAVE'])
in php.
best regards.