<%!
public void display()
{
System.out.println("Hai");
}
%>
<input type="submit" value="touch me" method="display()"/>
I have a jsp page like above. How can i call a method when the user clicking the button.The above code is not working. How i do it without javascript...
