Hi, thanks.. but I prefer doing the validation by using javascript since it is faster but I don't know how...
any sample code?
<form name="test" method="post" action="request_action1.jsp?action=addrequest">
<input name="description" type="text" size="75">
function validateform()
{
var myForm = document.test;
if (myForm.description.length == 0)
{
alert("Please enter the item description");
history.go(-1);
}
}
but the alert can not be shown... can help me resolve the problem?