摘要:
在IE中,如果不加css,fieldset的效果是圆角的,但加了css后就变成方角的了。
在Firefox中的效果都为方角。
本文来源于 WEB开发网 原文链接:http://www.cncms.com.cn/html/6667.htm 阅读全文
摘要:
1、按钮添加JavaScript事件
2、客户端按钮触发服务器按钮的方法
3、JavaScript获取前台控件方法 阅读全文
摘要:
一个正则表达式就是由普通字符(例如字符 a 到 z)以及特殊字符(称为元字符)组成的文字模式。该模式描述在查找文字主体时待匹配的一个或多个字符串。正则表达式作为一个模板,将某个字符模式与所搜索的字符串进行匹配。
阅读全文
摘要:
Ado.Net概述protectedvoidPage_Load(objectsender,EventArgse){stringcon=ConfigurationManager.ConnectionStrings["mydbconn"].ToString();SqlConnectionconn=newSqlConnection(con);conn.Open();SqlCommandcmd=newSq... 阅读全文
摘要:
1、TreeView 服务器控件的事件
TreeNodeCheckChange 当TreeView服务器控件的复选框在向服务器的两次发送过程之间有所更改时发生
SelectedNodeChange 当选择TreeView服务器控件中的节点时发生
TreeNodeExpanded 当展开TreeView服务器控件中的节点时发生
TreeNodeCollapsed 当折叠TreeView服务器控件中的节点时发生
TreeNodePoulate 当其PopulateOnDemand属性设置为true的节点在TreeView服务器控件中展开时发生reeView
TreeNOdeDataBound 当数据项绑定到TreeView服务器控件中的节点时 阅读全文
摘要:
内联式样式表:直接写在现有的HTML中,如
嵌入式样式表:使用""标签嵌入到HTML文件的头部中,如
阅读全文
摘要:
1、主题目录:App_Themes
2、没有定义skinid的主题为默认主题
3、一键切换主题
3.1 主题切换只能在Page_PreInit事件中
3.2 Response.Redirect("formview.aspx?t=red") //重定向到本页,带变量t
阅读全文
摘要:
public partial class 母版页_Default : System.Web.UI.Page { protected void Page_PreInit(object sender, EventArgs e) //在内容页和母版页合并之前运行的事件 { if (Session["aa"] != null) //虚判断 { ... 阅读全文
摘要:
1、镶套(在GridView里镶套BulletedList) private SqlDataReader read(string id) { SqlConnection mycon = new SqlConnection(ConfigurationManager.ConnectionStrings["pubconn"].ToString()); m... 阅读全文
摘要:
public partial class GridView_GridView3 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { for (int i = 1; i < GridVie... 阅读全文
摘要:
1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 in... 阅读全文
摘要:
(1)二进制数据类型 二进制数据包括 Binary、Varbinary 和 Image Binary 数据类型既可以是固定长度的(Binary),也可以是变长度的。 Binary[(n)] 是 n 位固定的二进制数据。其中,n 的取值范围是从 1 到 8000。其存储窨的大小是 n + 4 个字节。 Varbinary[(n)] 是 n 位变长度的二进制数据。其中,n 的取值范围... 阅读全文
摘要:
1、PlaceHolder ph.Controls.Add(hl); 添加控件 2、控件,对象添加自定义属性 Button1.Attributes.Add("onmouseover", "this.styl.backgroundColor='#00ffcc'"); e.Row.Attributes.Add("onmouseover", "... 阅读全文
摘要:
1、数据绑定(将数据写成一个方法,方便数据绑定) public class db { protected string connstring; private int pagesize; public db() { connstring = ConfigurationManager.ConnectionStrings["pubconn"].Conne... 阅读全文
摘要:
DataSoure:数据源
AllowPageing:是否允许分页
PageSize:页面记录数
CurrentPageIndex:当前页面 阅读全文