aspx 跳转到页面并传值
如题,在一个页面上点击按钮,弹出另一个窗口或网页,然后把原来页面中的某个字段值传过来,怎么做?...
如题,在一个页面上点击按钮,弹出另一个窗口或网页,然后把原来页面中的某个字段值传过来,怎么做?
展开
1个回答
展开全部
//a.aspx
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server" action="b.aspx">
<input type="text" name="sex" value="男" />
<input type="submit" value="提交">
</form>
</body>
</html>
//b.aspx.cs
string sex=Request.Form["sex"];//男
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server" action="b.aspx">
<input type="text" name="sex" value="男" />
<input type="submit" value="提交">
</form>
</body>
</html>
//b.aspx.cs
string sex=Request.Form["sex"];//男
追问
不是,要的是在.cs文件中操作的办法
追答
//a.aspx
//a.aspx
protected void btn_Input_Click(object sender, EventArgs e)
{
Response.Redirect("b.aspx?sex="+Request.Form["sex"]);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询