您好!感谢您百忙中抽空看这个提问。 asp中,form设了2个按钮,要怎么判断是按了某个按钮? 谢谢!
希望程序在按登陆后调用输出程序out_1具体程序如下:<i--example1.asp></i><%'-----------------asp清除缓存'---------...
希望程序在按登陆后调用输出程序 out_1
具体程序如下:
<i-- example1.asp ></i>
<%
'-----------------asp清除缓存
'-----------------在Asp页面首部加入
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "No-Cache"
%>
<i-- --------------
输入程序
--------------- ></i>
<form name="ins1" id="ins1" method=post action="?" >
<input type="text" name="name" id="name">
<select name="sex" id="sex">
<option value="男">男</option>
<option value="女">女</option>
</select>
<input type="submit" value="登陆">
<input type="submit" value="取消">
</form>
<i-- ---------------
输入程序结束
---------------- ></i>
<%
'------------------------------
' 处理程序
'------------------------------
dim selection
selection=request.form("value") '这句应该怎么写?
'selection="登陆"
response.Write selection
if selection="登陆" then
call out_1 '----------------- 调用 out_1 输出程序
end if
'--------------------------------
'完毕。
%>
<%
'------------------------------
' 输出程序
' -----------------------------
function out_1
dim name,sex
name=request("name")
sex=request("sex")
if sex="男" then
response.Write name&"先生,欢迎您访问小站!"
else
if sex="女" then
response.Write name&"女士,欢迎您访问小站!"
else
response.Write name&"未选择性别"
end if
end if
end function
'--------------------------------
'完毕。
%> 展开
具体程序如下:
<i-- example1.asp ></i>
<%
'-----------------asp清除缓存
'-----------------在Asp页面首部加入
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "No-Cache"
%>
<i-- --------------
输入程序
--------------- ></i>
<form name="ins1" id="ins1" method=post action="?" >
<input type="text" name="name" id="name">
<select name="sex" id="sex">
<option value="男">男</option>
<option value="女">女</option>
</select>
<input type="submit" value="登陆">
<input type="submit" value="取消">
</form>
<i-- ---------------
输入程序结束
---------------- ></i>
<%
'------------------------------
' 处理程序
'------------------------------
dim selection
selection=request.form("value") '这句应该怎么写?
'selection="登陆"
response.Write selection
if selection="登陆" then
call out_1 '----------------- 调用 out_1 输出程序
end if
'--------------------------------
'完毕。
%>
<%
'------------------------------
' 输出程序
' -----------------------------
function out_1
dim name,sex
name=request("name")
sex=request("sex")
if sex="男" then
response.Write name&"先生,欢迎您访问小站!"
else
if sex="女" then
response.Write name&"女士,欢迎您访问小站!"
else
response.Write name&"未选择性别"
end if
end if
end function
'--------------------------------
'完毕。
%> 展开
3个回答
展开全部
不是可以设 Button 的ID吗?
这里是maimWindow.aspx里面这样写
<asp:Button ID="Button1" runat="server" Text="登录" onclick="Button1_Click" />
<asp:Button ID="Button2" runat="server" Text="取消" onclick="Button2_Click" />
这里是它的后台代码:
protected void Button1_Click(object sender, EventArgs e)
{
}
protected void Button2_Click(object sender, EventArgs e)
{
}
2:也可以这样、
<input type="submit" value="登陆" runat="server" ID="btnA">
<input type="submit" value="取消" runat="server" ID="btnB">
这里是maimWindow.aspx里面这样写
<asp:Button ID="Button1" runat="server" Text="登录" onclick="Button1_Click" />
<asp:Button ID="Button2" runat="server" Text="取消" onclick="Button2_Click" />
这里是它的后台代码:
protected void Button1_Click(object sender, EventArgs e)
{
}
protected void Button2_Click(object sender, EventArgs e)
{
}
2:也可以这样、
<input type="submit" value="登陆" runat="server" ID="btnA">
<input type="submit" value="取消" runat="server" ID="btnB">
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询