If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Can somebody give me an idea. Can I do the transaction in the same page without post to another page. The code I type myself. I know that using dreamweaver it can be done but how if I type it myself. what should i put at the action form?..
<%
if request.form("btnInsert")="Insert" then
' do insert
elseif request.form("btnDelete")="Delete" then
' do delete
end if
%>
<html>
<body>
<form>
do stuff
<input type="button" name="btnInsert" id="btnInsert" value="Insert">
<input type="button" name="btnDelette" id="btnDelete" value="Delete">
</form>
</body>
</html>