问题描述
我要在页面刷新prevent button_click事件。
我已搜查,但不能得到有关我的任何解决方案。
我发现这一个:结果
的
I want to prevent button_click event in page refresh. I have searched but can not get any solution relevant for me.I have found this one:
http://www.dotnetspider.com/resources/42823-How-Avoid-Re-Submitting-Data-Page-Refresh.aspx
但我并不需要去button_click事件中的页面刷新。
But i do not need to go inside button_click event in page refresh.
Response.Redict()也在这里,因为我成功的button_click回国后标签文本不相关的。
Response.Redict("") also not relevant here as i am returning label text after succesful button_click.
推荐答案
你所要找的是不是这么简单。
What you looking for is not so simple.
您可以用肯定的解决方案是在Post/Redirect/Get设计模式
The solution you can use for sure is the Post/Redirect/Get design pattern
或者使用code,它会检测页面的刷新:
or use some code that tries to detect the refresh of the page on:
http://dotnetslackers.com/community/blogs/simoneb/archive/2007/01/06/Using-an-HttpModule-to-detect-page-refresh.aspx
这篇关于在页面刷新prevent button_click事件在c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!