zoukankan
html css js c++ java
Atlas入门使用服务端定时控件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
>
查看全文
相关阅读:
微软源码地址
主流.NET的ORM框架
C#为字符串数组动态赋值的问题
JQuery判断radio(单选框)是否选中和获取选中值方法总结
使用Google浏览器和火狐浏览器一起查看同步跟异步页面
关于NHibernate之 no persister for: ×××.××错误的解决方法
低版本VS打开高版本的解决方案
亚马逊AWS(同样适用于Google Cloud Platform)
VsCode快捷键
oracle_linux_6_64(bit)上安装oracle11gR2数据库环境快速准备神器oracle-rdbms-server-11gR2-preinstall
原文地址:https://www.cnblogs.com/thcjp/p/487625.html
最新文章
laravel-模板引擎Blade
Laravel-数据库操作笔记
Laravel-路由-控制器
PHP正则表达式
PHP设计模式笔记九:装饰器模式 -- Rango韩老师 http://www.imooc.com/learn/236
PHP设计模式笔记八:原型模式 -- Rango韩老师 http://www.imooc.com/learn/236
PHP设计模式笔记七:观察者模式 -- Rango韩老师 http://www.imooc.com/learn/236
PHP设计模式笔记六:数据对象映射模式 -- Rango韩老师 http://www.imooc.com/learn/236
PHP设计模式笔记五:策略模式 -- Rango韩老师 http://www.imooc.com/learn/236
一行代码表白爱情
热门文章
ansible的安装与格式
python操作MongoDB
MongoDB的数据类型
MongoDB的增删改查
初识MongoDB
第八篇 实例化Flask的参数 及 对app的配置
第七篇 Flask 中路由系统
第六篇 Flask 中内置的 Session
第四篇 做一个用户登录之后查看学员信息的小例子
SQL Sever的性能优化系列-索引碎片
Copyright © 2011-2022 走看看