zoukankan
html css js c++ java
第三篇: UpdatePanel 控件示例
1. 新建一个web窗体Default3.aspx
2. 加入ScriptManager控件和UpdatePanel控件.
在UpdatePanel控件中加入 一个2 * 3 的表格
图5
3. 加入TextBox控件,Button控件,Calendar控件
图6
4. 双击Button控件,键入下列代码
Code
protected
void
Button1_Click(
object
sender, EventArgs e)
{
Calendar2.Visible
=
true
;
}
双击Calendar控件,键入下列代码
Code
protected
void
Calendar2_SelectionChanged(
object
sender, EventArgs e)
{
TextBox1.Text
=
Calendar2.SelectedDate.ToString();
Calendar2.Visible
=
false
;
}
5.运行!!!
图7
查看全文
相关阅读:
转:yum和aptget用法及区别
APT upgrade 和 distupgrade 的差別
flickr api 入门教程
查看FileZila 快速连接密码
Freemium模式
asp.net 开发环境搭建
flickr api authentication
转:虚拟机VirtualBox中Ubuntu无法全屏解决方法
转:网页设计中的默认字体样式详解
Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
原文地址:https://www.cnblogs.com/LinFx/p/2123722.html
最新文章
有没有提供单词读音的API V2EX
分享:利用tcp_wrappers 保护服务安全
How to read whole file? (C++)
C++文件读写总结 IT无以言退 博客频道 CSDN.NET
最近有个项目要用到web形式的命令行终端或terminal,又没法自己开发,有没有啥好东东推荐? V2EX
An Introduction to Bioinformatics Algorithms (Computational Molecular Biology)
分享:Linux C基于进程并发的服务器简单示例
分享:Sersync试用
ZZZZ
分享:linux fork()函数
热门文章
memstr Dustfly的专栏 博客频道 CSDN.NET
分享:libmemcached 1.0.17 发布,memcached 开发包
memstr
分享:libmemcached 1.0.17 发布,memcached 开发包
RFC 1952 GZIP file format specification version 4.3
DSAL 1.0.52 发布,经典的数据结构和算法库 开源中国 OSChina.NET
实现memstr请指正
最近有个项目要用到web形式的命令行终端或terminal,又没法自己开发,有没有啥好东东推荐? V2EX
关于chunked gzip,socket下载网页内容. xiqi8144的专栏 博客频道 CSDN.NET
processing ball gravity simulation
Copyright © 2011-2022 走看看