Vote count:
0
I want to know if it is possible to clear the URL after a Get call from jsp ?
I display a simple list in my jsp :
<c:forEach items="${categories}" var="category">
<li>${category.categoryId}</li>
<li>${category.categoryName}</li>
<li><a href="./Admin?action=delete_category&id=${category.categoryId}">Delete</a><br/></li>
</c:forEach>
So the URL is always : http:/myapp/Admin?action=delete_category&id=2
And I have 2 Post submit forms into my page that are re-triggering this Get call.. So I need a method to clear the URL after the Get call.
asked 43 secs ago
Aucun commentaire:
Enregistrer un commentaire