本文介绍了什么是ispost回来了?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在网格,按钮和下拉列表中使用IsPostback属性?

How can I used IsPostback property in grid, button and dropdown ?

推荐答案

if (!IsPostBack)
    {
    ...
    }


protected void Page_Load()

{
if(!IsPostback)
{
put your statments block here // it execute only once when page load first time
}
}















Ravi Halvadiya



软件工程师r $>


www.InsightSoftech.com








Ravi Halvadiya

Software Engineer

www.InsightSoftech.com


这篇关于什么是ispost回来了?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 01:40