I put image of a button on a background of the table cell in order to load text inside the cell. I need to do this because the button text can be in different languages. The background was done because client likes this look and feel. But we were told that this is clickable button that needs to send data to the server. I'm not sure how to do it using this background and changing the text dynamically on load. Here is the sample code. This is extremely urgent, please help.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="">
<table width="60%" border="0">
<tr>
<td height="117" background="images/WS_addFF_EN/WS_addFF_EN_05.jpg">
<div align="center"><font color="#FFFFFF" face="Arial, Helvetica, sans-serif" size="+1">text
for position only</font></div>
</td>
</tr>
</table>
</form>
</body>
</html>
The text - "text for position only" will need to change based on language, but we also need this to be a button that will submit the rest of the form data to the server.
Thanks in advance