C# .net 点击按钮刷新页面(点击按钮相当于键盘按F5)
protectedvoidButton1_Click(objectsender,EventArgse){??????????????????}??处该怎么写...
protected void Button1_Click(object sender, EventArgs e)
{
??????????????????
}
??处该怎么写 展开
{
??????????????????
}
??处该怎么写 展开
11个回答
展开全部
如果,Button1是服务器控件,那么后台用
protected void Button1_Click(object sender, EventArgs e)
{
Response.Write("<script language=javascript>window.location.href=window.location.href;</script>");
//或者2
//2, ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "refresh", "window.location.href=window.location.href;", true);
}
如果Button1是HTML控件,有前台<input type="button" value="刷新" onclick="location.reload()" /> 就行了。
protected void Button1_Click(object sender, EventArgs e)
{
Response.Write("<script language=javascript>window.location.href=window.location.href;</script>");
//或者2
//2, ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "refresh", "window.location.href=window.location.href;", true);
}
如果Button1是HTML控件,有前台<input type="button" value="刷新" onclick="location.reload()" /> 就行了。
展开全部
js就可以了
<input type="button" value="刷新" onclick="location.reload()" />
后台的话可以跳转到本页面
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect(Request.Url.ToString());
}
<input type="button" value="刷新" onclick="location.reload()" />
后台的话可以跳转到本页面
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect(Request.Url.ToString());
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个不用想这多了。对于WEB程序如果能用客户端js实现且不难的切记最好用js。
你说的这个相当简单,直接reload一下就行的。在你的按钮(用html按钮)里的onclick里写onclick="location.reload()" /> 就OK啦
你说的这个相当简单,直接reload一下就行的。在你的按钮(用html按钮)里的onclick里写onclick="location.reload()" /> 就OK啦
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-05-31
展开全部
重新加载一面
如果是网页 就使用JS 达到无加载刷新效果
如果是网页 就使用JS 达到无加载刷新效果
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我觉得也对 你重新加载一遍不就行了吗? Response.Redirect("你页面的路径");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询