怎么设置ASP的按钮被按下就执行某个操作?
<formid="form2"name="form2"method="post"action=""onsubmit="alert('找回成功')"><tableborde...
<form id="form2" name="form2" method="post" action="" onsubmit="alert('找回成功')">
<table border="0" width="30%">
<tr>
<td align="right"><input id="找回" type="submit" value="找回" name="找回" onclick="return confirm('确定要找回?')" /></td>
</tr>
</table>
</form>
<%
If Request.Form("找回")<>"" Then
Dim strSql1
strSql1 ="update bl_patient_info SET Mr_doctor_statue=0 Where Patient_num = '"& zyh &"'"
conn.Execute(strSql1)
End If
%>
比如说按下找回按钮执行那个更新的SQL语句 展开
<table border="0" width="30%">
<tr>
<td align="right"><input id="找回" type="submit" value="找回" name="找回" onclick="return confirm('确定要找回?')" /></td>
</tr>
</table>
</form>
<%
If Request.Form("找回")<>"" Then
Dim strSql1
strSql1 ="update bl_patient_info SET Mr_doctor_statue=0 Where Patient_num = '"& zyh &"'"
conn.Execute(strSql1)
End If
%>
比如说按下找回按钮执行那个更新的SQL语句 展开
3个回答
展开全部
ASP是服务端语言,它没有按钮
你是说客户端的JS吧
比如
<input type="button" onclick="alert('已经执行了')" />
你是说客户端的JS吧
比如
<input type="button" onclick="alert('已经执行了')" />
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
action="?act=a"
<%
if request("act")="a" then
If Request.Form("找回")<>"" Then
Dim strSql1
strSql1 ="update bl_patient_info SET Mr_doctor_statue=0 Where Patient_num = '"& zyh &"'"
conn.Execute(strSql1)
End If
end if
%>
<%
if request("act")="a" then
If Request.Form("找回")<>"" Then
Dim strSql1
strSql1 ="update bl_patient_info SET Mr_doctor_statue=0 Where Patient_num = '"& zyh &"'"
conn.Execute(strSql1)
End If
end if
%>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询