if (IsPostBack) return;

Posted 枫炎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了if (IsPostBack) return;相关的知识,希望对你有一定的参考价值。

后台pageload事件里面

  protected void Page_Load(object sender, EventArgs e)

{

if (IsPostBack) return;

首次加载要执行的函数

}

这个写法相当于

  protected void Page_Load(object sender, EventArgs e)

{

if (!IsPostBack) 

{

首次加载要执行的函数

}

}

以上是关于if (IsPostBack) return;的主要内容,如果未能解决你的问题,请参考以下文章

apsx 页面 if(!ispostback)其用法和作用 什么时候该用?

APS.NET webform中的isPostBack

如何在 !Page.IsPostBack 之后将我的项目保存在 asp:dropdownlist 中?

ruby 来自https://stackoverflow.com/questions/4817266/if-string-is-empty-then-return-some-default-value

Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.

asp.net页面的生命周期中有一个判断是不是回传 IsPostBack 属性,请问有啥用?