Jul 30th, 2013, 8:47 AM
Hi,
You need the image to carry a value to determine which button was clicked. Using input type=image has issues in some browsers. You will have to use a button with a background image instead of an image. Try adding in a regular button first to see if that is the issue and then you can style the button with CSS afterwards.
Replace: <input type='image' name='contact' class='submit' src='/Images/submit.png' alt='Submit'>
With: <input type="submit" name="contact" value="submit">
Cheers,
Joe
You need the image to carry a value to determine which button was clicked. Using input type=image has issues in some browsers. You will have to use a button with a background image instead of an image. Try adding in a regular button first to see if that is the issue and then you can style the button with CSS afterwards.
Replace: <input type='image' name='contact' class='submit' src='/Images/submit.png' alt='Submit'>
With: <input type="submit" name="contact" value="submit">
Cheers,
Joe