爬了一些文發現...
已在master page使用scriptmanager的情況下,
在content page中可不必再加入scriptmanager,
但因為我在content page中想放一個update panel的區域,
打算用timer來做內容的更新,發現怎麼試都不會有變化??
不知是哪裡有錯!?
首先在content page內插入一段
<asp:updatepanel ....>
<contentTemplate>
<asp:Label ......></asp:Label>
</contentTemplate>
<Triggers>
<asp:AsyncPostBakTrigger: ControlID="Timer1" EventName="tick" />
</Triggers>
</asp:updatepanel>
c#程式碼
protected void Timer1_Tick(object sender, EventArgs e)
{
this.Label1.Text = DateTime.Now.LongTimeString();
}
想要在content page中看到時間的變化,但始終不變? 可否請各位大大指點迷津..謝謝!!