asp.net,c#语言,怎么打开一个新页面
6个回答
展开全部
可以试试用带参数跳转。
以下示例是将输入TextBox1中的数据显示到Default2.aspx页面中。
Default.aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("Default2.aspx?Text=" + TextBox1.Text.Trim());
}
Default2.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (Request.QueryString["Text"] != null)
{
Response.Write(Request.QueryString["Text"].ToString());
}
}
}
以下示例是将输入TextBox1中的数据显示到Default2.aspx页面中。
Default.aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("Default2.aspx?Text=" + TextBox1.Text.Trim());
}
Default2.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (Request.QueryString["Text"] != null)
{
Response.Write(Request.QueryString["Text"].ToString());
}
}
}
展开全部
没用C#打开过
一般用JSwindow.open('xxxx.aspx');</script>
没必要再经过服务器一次
一般用JSwindow.open('xxxx.aspx');</script>
没必要再经过服务器一次
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
同意ls的~还是用javascript吧
function newwin(url){
var newwin=window.open(url,1,
"toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=450");
newwin.focus();
return false;
}
function newwin(url){
var newwin=window.open(url,1,
"toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=450");
newwin.focus();
return false;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用会话传值,挑出另外一个页面不就行了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看你的需求是什么了。。 如果你在点击按钮之前,需要显示的数据已经在页面上展示了,那么就不必经过服务器了;如果需要点击按钮之后才能查询出所需数据,那就必须提交至服务器了,这样一来为了避免页面刷新 就求助于Ajax了。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用response.redirect("http://www.baidu.com")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询