会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
天轰穿专心做教程,做什么,如何做,你来说,我来做
博客园
::
首页
::
新随笔
::
订阅
::
管理
公告
Atlas入门-使用服务端定时控件TimerControl [视频]
Posted on
2006-08-27 16:30
天轰穿
阅读(
11471
) 评论(
15
)
编辑
收藏
举报
参阅了TerryLee 的 TimerControl范例 不过为了视频看起来跟简单,所以我没有用到service 直接显示一个动态时钟!希望有不明白的朋友可直接留言,http://thcjp.cnblogs.com ,详细参数可以参阅http://terrylee.cnblogs.com/archive/2006/07/28/Atlas_TimerControl.html 对了,这节视频的主题是 使用服务端定时控件TimerControl 前面就不多说了,直接进入后面重要的! 视频教程下载
参阅了
TerryLee
的 TimerControl范例
不过为了视频看起来跟简单,所以我没有用到service 直接显示一个动态时钟!希望有不明白的朋友可直接留言,http://thcjp.cnblogs.com ,详细参数可以参阅http://terrylee.cnblogs.com/archive/2006/07/28/Atlas_TimerControl.html
对了,这节视频的主题是
使用服务端定时控件TimerControl
前面就不多说了,直接进入后面重要的!
下载视频
全部代码如下
后台C#代码
protected
void
TimerControl1_Tick(
object
sender, EventArgs e)
{
Label1.Text
=
DateTime.Now.ToLongTimeString();
}
前台HTML代码
<%
@ Page Language
=
"
C#
"
AutoEventWireup
=
"
true
"
CodeFile
=
"
Default6.aspx.cs
"
Inherits
=
"
Default6
"
%>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
runat
="server"
>
<
title
>
无标题页
</
title
>
</
head
>
<
body
>
<
form
id
="form1"
runat
="server"
>
<
div
>
参阅了
<
a
href
="http://www.cnblogs.com/Terrylee/"
>
TerryLee
</
a
>
的 TimerControl范例
<
br
/>
<
br
/>
不过为了视频看起来跟简单,所以我没有用到service 直接显示一个动态时钟!希望有不明白的朋友可直接留言,http://thcjp.cnblogs.com ,详细参数可以参阅http://terrylee.cnblogs.com/archive/2006/07/28/Atlas_TimerControl.html
<
br
/>
<
br
/>
对了,这节视频的主题是
<
strong
>
使用服务端定时控件TimerControl
<
br
/>
<
br
/>
前面就不多说了,直接进入后面重要的!
<
br
/>
<
br
/>
<
atlas:ScriptManager
ID
="ScriptManager1"
runat
="server"
EnablePartialRendering
="True"
>
</
atlas:ScriptManager
>
</
strong
>
</
div
>
<
atlas:UpdatePanel
ID
="UpdatePanel1"
runat
="server"
>
<
ContentTemplate
>
<
atlas:TimerControl
ID
="TimerControl1"
runat
="server"
Interval
="500"
OnTick
="TimerControl1_Tick"
>
</
atlas:TimerControl
>
<
asp:Label
ID
="Label1"
runat
="server"
Text
="Label"
></
asp:Label
>
</
ContentTemplate
>
</
atlas:UpdatePanel
>
<
br
/>
更多教程请关注 http://thcjp.cnblogs.com
</
form
>
</
body
>
</
html
>
刷新页面
返回顶部
Powered by:
博客园
Copyright © 2024 天轰穿
Powered by .NET 9.0 on Kubernetes