asp.net ajax学习系列功能强大的UpdatePanel控件

先给一个简单的例子,后面给一个比较复杂的例子。

改进后的UpdatePanel使页面部分更新(Partial-Page Updates)实现起来非常容易。
要想在已有web页面或新建页面中加入部分更新内容,都十分容易,下面几个步骤:
<1>在页面中加入ScriptManager控件。并保证ScriptManager控件的EnablePartialRendering属性值为true。若EnablePartialRendering=false,那么下面所做的对页面部分更新的任何设置都不能实现。EnablePartialRendering的默认值是true,不作修改就行。

 


<2>把UpdatePanel控件加到页面中。在 中加入想部分更新的内容就行了。



           
             


                In UpdatePanel
                  UpdatePanel content refreshed at <%=DateTime.Now.ToString() %>
                
              

           
 
为了对比,在UpdatePanel外面加一行代码

Out of UpdatePanel,refreshed at <%=DateTime.Now.ToString() %>

这样部分更新功能就实现了,或许都不敢相信。
看看效果吧。

两部分更新时间不一样!

UpdatePanel控件的功能是很强大的。这是最简单的应用。
部分更新时,提交给服务器的数据跟一般的postback没有什么区别,所有数据包括viewstate中的数据被传回服务器。不同的地方在于从服务器只返回部分更新部分的数据。由于UpdatePanel控件的引入,postback被分为两种,asynchronous postback和normal postback,asynchronous postback引起UpdatePanel的更新,normal postback引发整个页面的更新。使用ScriptManager的IsInAsyncPostBack属性可以判断回传的类型。
介绍一下UpdatePanel的属性。
<1>Triggers
有两种AsyncPostBackTrigger,PostBackTrigger。
AsyncPostBackTrigger
来指定某个控件的某个事件引发异步回传(asynchronous postback),即部分更新。属性有ControlID和EventName。分别用来指定控件ID和控件事件,若没有明确指定EventName的值,则自动采用控件的默认值,比如button就是click。把ContorlID设为UpdatePanel外部控件的ID,可以使外部控件控制UpdatePanel的更新。
PostBackTrigger
来指定UpdatePanel内的某个控件引发整个页面的更新(normal postback)。

 


           
           

<2>UpdateMode
有两个值:Always,Conditional。总是更新,有条件更新。
确定当asynchronous postbacks发生时,是否总是更新。若页面中只有一个UpdatePanel控件,这个值好像没有什么意义。但是当页面中存在多个UpdatePanel,或者UpdatePanel中包含UpdatePanel的复杂情况时,这个值的设定就可以使各个UpdatePanel在各种合适时机更新。
<3>ChilderAsTriggers
bool值,默认是true。若设为false,则UpdatePanel的子控件引发异步回传(asynchronous postback),但是不更新当前UpdatePanel(在多个UpdatePanel的页面中发现的)。这里比较难于理解,甚至我理解的是错误的。请高手指点。
该属性只在UpdateMode=Conditional条件下有意义。右UpdateMode为Always,ChilderAsTriggers=false就则引发异常。

另外UpdatePanel还提供了一个方法Update(),可以通过代码控件部分更新。
先说这么多。下面给个代码,使用了这些属性。


<%@ Page Language="C#" %>
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



Untitled Page
   


   


   

       
       

   
      

      UpdatePanel控件外
      

       
       
        Refrest at <%=DateTime.Now.ToUniversalTime()%>
       

       
       
       
       
       

               
       

        UpdatePanel1
       
        Refresh at <%=DateTime.Now.ToUniversalTime()%>
       

       

       

       
       
       
       
       
       

                    
       
         
        UpdatePanel2
       
        Refresh at <%=DateTime.Now.ToUniversalTime() %>

              
       
       
       

        UpdatePanel3:I'm Child of UpdatePanel2
       
        Refresh at <%=DateTime.Now.ToUniversalTime()%>
       

       

       

       

       
       
       
       
               
       


        UpdatePanel4
       
        Refresh at <%=DateTime.Now.ToUniversalTime()%>
       

       
                    
       
       

   

 

TrackBack: http://www.knowsky.com/341067.html

转载于:https://www.cnblogs.com/hdjjun/archive/2008/06/17/1223613.html

你可能感兴趣的:(asp.net ajax学习系列功能强大的UpdatePanel控件)