The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
I've been trying to replace the post buttons ('post new topic' and 'preview') by images.
(example) http://www.scoutingkeentmoesel.nl/topic.asp?TOPIC_ID=2111
and http://www.scoutingkeentmoesel.nl/post.asp
Here's the HTML source that's used to generate the image-buttons:
Here's the original HTML code:
The problem is that when someone clicks on 'Preview' the topic gets posted.....and the preview gets loaded...
The same happens on the edit-profile page ; if one clicks on the 'view signature' button, the profile gets updated....
HTML is not my best part, I knew that already, but this one is really boggling me...
<
and http://www.scoutingkeentmoesel.nl/post.asp
Here's the HTML source that's used to generate the image-buttons:
Code:
<input name="Submit" src="images/plaatsbericht.gif" align="absmiddle" type="image">
<input src="images/voorbeeld.gif" align="absmiddle" type="image" name="Preview" type="button" value="preview" onclick="OpenPreview()">Here's the original HTML code:
Code:
<input class="gmlBtn2" name="Submit" type="submit" value="Post!">
<input class="gmlBtn2" name="Preview" type="button" value="preview" onclick="OpenPreview()">HTML is not my best part, I knew that already, but this one is really boggling me...