|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
来吧!老师们!我代表千千万万的asp.net/C#的初学者在这里呼唤着! 先给一个复杂的例子,前面给一个对照庞大的例子。
改善后的UpdatePanel使页脸部分更新(Partial-PageUpdates)完成起来十分简单。
要想在已有web页面或新建页面中到场部分更新内容,都非常简单,上面几个步骤:
<1>在页面中到场ScriptManager控件。并包管ScriptManager控件的EnablePartialRendering属性值为true。若EnablePartialRendering=false,那末上面所做的对页脸部分更新的任何设置都不克不及完成。EnablePartialRendering的默许值是true,不作修正就行。
CodehighlightingproducedbyActiproCodeHighlighter(freeware)
--><asp:ScriptManagerID="ScriptManager1"runat="server">
</asp:ScriptManager>
<2>把UpdatePanel控件加到页面中。在<ContentTemplate></ContentTemplate>中到场想部分更新的内容就好了。
<asp:UpdatePanelID="UpdatePanel1"runat="server">
<ContentTemplate>
<fieldset>
<legend>InUpdatePanel</legend>
UpdatePanelcontentrefreshedat<%=DateTime.Now.ToString()%>
<asp:ButtonID="Button1"Text="RefreshUpdatePanel"runat="server"/>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
为了对照,在UpdatePanel表面加一行代码
<div>OutofUpdatePanel,refreshedat<%=DateTime.Now.ToString()%></div>
如许部分更新功效就完成了,也许都不敢信任。
看看效果吧。
两部分更新工夫纷歧样!
UpdatePanel控件的功效是很壮大的。这是最复杂的使用。
部分更新时,提交给服务器的数据跟一样平常的postback没有甚么区分,一切数据包含viewstate中的数据被传回服务器。分歧的中央在于从服务器只前往部分更新部分的数据。因为UpdatePanel控件的引进,postback被分为两种,asynchronouspostback和normalpostback,asynchronouspostback引发UpdatePanel的更新,normalpostback激发全部页面的更新。利用ScriptManager的IsInAsyncPostBack属性能够判别回传的范例。
先容一下UpdatePanel的属性。
<1>Triggers
有两种AsyncPostBackTrigger,PostBackTrigger。
AsyncPostBackTrigger
来指定某个控件的某个事务激发异步回传(asynchronouspostback),即部分更新。属性有ControlID和EventName。分离用来指定控件ID和控件事务,若没有明白指定EventName的值,则主动接纳控件的默许值,好比button就是click。把ContorlID设为UpdatePanel内部控件的ID,可使内部控件把持UpdatePanel的更新。
PostBackTrigger
来指定UpdatePanel内的某个控件激发全部页面的更新(normalpostback)。
CodehighlightingproducedbyActiproCodeHighlighter(freeware)
http://www.CodeHighlighter.com/
--><Triggers>
<asp:PostBackTriggerControlID="Button1"/>
<asp:AsyncPostBackTriggerControlID="Button2"EventName="Click"/>
</Triggers>
<2>UpdateMode
有两个值:Always,Conditional。老是更新,有前提更新。
断定当asynchronouspostbacks产生时,是不是老是更新。若页面中只要一个UpdatePanel控件,这个值仿佛没有甚么意义。可是当页面中存在多个UpdatePanel,大概UpdatePanel中包括UpdatePanel的庞大情形时,这个值的设定就能够使各个UpdatePanel在各类符合机会更新。
<3>ChilderAsTriggers
bool值,默许是true。若设为false,则UpdatePanel的子控件激发异步回传(asynchronouspostback),可是不更新以后UpdatePanel(在多个UpdatePanel的页面中发明的)。这里对照难于了解,乃至我了解的是毛病的。请妙手指导。
该属性只在UpdateMode=Conditional前提下成心义。右UpdateMode为Always,ChilderAsTriggers=false就则激发非常。
别的UpdatePanel还供应了一个办法Update(),能够经由过程代码控件部分更新。
上面给个代码,利用了这些属性。
<%@PageLanguage="C#"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<scriptrunat="server">
protectedvoidButton4_Click(objectsender,EventArgse)
{
UpdatePanel1.Update();
}
</script>
<htmlxmlns="http://www.w3.org/1999/xhtml">
<headrunat="server">
<title>UntitledPage</title>
<styletype="text/CSS">
.UpdatePanelTitle
{
color:red;
}
</style>
</head>
<body>
<formid="form1"runat="server">
<div>
<asp:ScriptManagerID="ScriptManager1"runat="server">
</asp:ScriptManager>
<fieldset>
<legendclass="UpdatePanelTitle">UpdatePanel控件外</legend>
<asp:Buttonrunat="server"ID="Button5"Text="激发惯例回传"/><br/>
<asp:Buttonrunat="server"ID="Button1"Text="激发异步回传"/><br/>
Refrestat<%=DateTime.Now.ToUniversalTime()%>
</fieldset>
<asp:UpdatePanelID="UpdatePanel1"UpdateMode="Conditional"runat="server">
<Triggers>
<asp:PostBackTriggerControlID="Button2"/>
</Triggers>
<ContentTemplate>
<fieldset>
<legendclass="UpdatePanelTitle">UpdatePanel1</legend>
<asp:Buttonrunat="server"ID="Button2"Text="激发惯例回传"/>
Refreshat<%=DateTime.Now.ToUniversalTime()%>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanelID="UpdatePanel2"UpdateMode="Conditional"runat="server">
<Triggers>
<asp:AsyncPostBackTriggerControlID="Button1"/>
</Triggers>
<ContentTemplate>
<fieldset>
<legendclass="UpdatePanelTitle">UpdatePanel2</legend>
<asp:Buttonrunat="server"ID="Button3"Text="InPanel2"/>
Refreshat<%=DateTime.Now.ToUniversalTime()%><br/>
<asp:UpdatePanelID="UpdatePanel3"runat="server"UpdateMode="Always">
<ContentTemplate>
<fieldset>
<legendclass="UpdatePanelTitle">UpdatePanel3:ImChildofUpdatePanel2</legend>
<asp:Buttonrunat="server"ID="Button4"Text="InPanel3"/>
Refreshat<%=DateTime.Now.ToUniversalTime()%>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanelID="UpdatePanel4"UpdateMode="Conditional"runat="server"ChildrenAsTriggers="false">
<ContentTemplate>
<fieldset>
<legendclass="UpdatePanelTitle">UpdatePanel4</legend>
<asp:Buttonrunat="server"ID="Button6"Text="激发惯例回传,但不更新本人"/>
Refreshat<%=DateTime.Now.ToUniversalTime()%>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</body>
</html>
不过你如果学.net的话,你就不要选os了,这课比较底层的。你可以旁听数据库加上软件构件和中间件。(webservices和面向服务的课也应该听一听) |
|