Add an actionListener ActionEvent in jsp



Newbie,

Im trying to add an actionListener ActionEvent to a submit button in
jsp and don't know how to go about it.

<form name="form" method="post" action=""
enctype="multipart/form-data">
<input type="file" name="imagefile">
<br>
<input type="submit" name="Submit" value="Submit">
<%
Submit.addActionListener(this);
public void actionPerformed(ActionEvent e)
{
if(e.getSource() == Submit )
{
//code to copy image
}
}
%>
</form>

Thanks.

.


Quantcast