本文介绍了要再次显示网页,Internet Explorer需要重新发送以前提交的信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我点击gridview分页并浏览下一页但我刷新页面时在IE浏览器中收到此弹出消息错误。



我是什么尝试过:



when i click on the gridview paging and navigate the next page but i refresh the page getting this popup message error in IE browser.

What I have tried:

protected void gvesource_PageIndexChanged(object sender, GridViewPageEventArgs e)
{
    gvesource.PageIndex = e.NewPageIndex;
    gvesource.DataBind();
    Response.Redirect(Request.RawUrl);
}



我正在尝试这个但不工作它是一个无限循环。


I am trying this one but not working it is a infinity looping.

推荐答案


这篇关于要再次显示网页,Internet Explorer需要重新发送以前提交的信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 11:24