博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AJAX Control Toolkit——PopupControlExtender(弹出窗口)
阅读量:6294 次
发布时间:2019-06-22

本文共 1832 字,大约阅读时间需要 6 分钟。

PopupControl is an ASP.NET AJAX extender that can be attached to any control in order to open a popup window that displays additional content. This popup window will probably be interactive and will probably be within an ASP.NET AJAX UpdatePanel, so it will be able to perform complex server-based processing (including postbacks) without affecting the rest of the page. The popup window can contain any content, including ASP.NET server controls, HTML elements, etc. Once the work of the popup window is done, a simple server-side call dismisses it and triggers any relevant script on the client to run and update the page dynamically.

TargetControlID——附加到的控件的ID

PopupControlID——弹出显示的控件ID

Position——弹出控件相对目标控件的位置(Left,Right, Top, Bottom, Center)

CommitProperty——目标控件要从弹出控件得到的属性值(可选)

CommotScript——获取弹出控件属性值的脚本

OffsetX/OffsetY——水平、竖直方向距默认位置的偏移距离

Animations

——OnShow

——OnHide

示例代码:

1 
2
3
4 ToDo: 5
6
7
8
9
10
12
13
14
15
16
17
18
19
20
21
22
25
26 27

简单CSS

.popupControl {
background-color:#AAD4FF; position:absolute; visibility:hidden; border-style:solid; border-color: Black; border-width: 2px; }

  

转载于:https://www.cnblogs.com/January/archive/2011/08/02/2124563.html

你可能感兴趣的文章
Django 和 Ajax 简介
查看>>
Qt的一个颜色选取按钮QColorButton
查看>>
perl 散列数组
查看>>
puppet之service管理
查看>>
Exchange2010server证书申请及分配服务
查看>>
Cassandra 处理客户端请求
查看>>
[WinApi]邮槽通信C/S实例
查看>>
linux NFS配置:NFS相关概念及其配置与查看
查看>>
需求转化到文档维护
查看>>
IIS 6.0安全增强
查看>>
使用Silverlight 2实现水中倒影效果
查看>>
aria2下载工具命令行和图形化界面使用
查看>>
SWT事件的四种写法
查看>>
AI算法透明不是必须,黑箱和可解释性可简化为优化问题
查看>>
生产环境一个like模糊匹配SQL优化
查看>>
linux wget命令详解
查看>>
Android真机运行错误INSTALL_FAILED_MEDIA_UNAVAILABLE
查看>>
WindowsServer2012史记4-重复数据删除的魅力
查看>>
Win2008 R2实战之只读域控制器部署(图)
查看>>
在Android源码树中添加userspace I2C读写工具(i2c-util)
查看>>