Forum Moderators: open
I have a button with the following code :
<input type="submit" name="id_agent" value="<%=x.value%>">
This value is then used on the next page like this :
<% cid=Request.Form("id_agent") %>
Problem is that the submit button is as ugly as everybody knows and would like to change it to an image. Used :
<a href="javascript:document.insert.submit();"><img src="insert.gif"></a>
But then this does not send the value...any way of sending a value with ASP code and still change the image?
Thanks in advance
Regards
<input type="image" name="submit" value="...">