导航

2013年5月3日

摘要: coolite控件:容器控件之FiledSet、Panel和Window学习 (2011-10-13 13:36:00)转载▼标签:windowpanelcoolitetoolkitfiledset杂谈分类: Coolite_Toolkit一、FieldSet控件FieldSet控件在开发中使用率还是很高的,毕竟Web中微软没有提供Group控件,通常都是使用FieldSet来进行表单等界面布局分组。在Coolite Toolkit中则专门提供了这样一个控件,同时还为其附加了很多其他的功能属性和方法。<ext:FieldSet ID="FieldSet1" runat 阅读全文

posted @ 2013-05-03 16:55 潘小博1992 阅读(235) 评论(0) 推荐(0) 编辑

摘要: 对应关系表SQL Server 2000C#CodeSmith数据类型取值范围数据类型取值范围空值代替值数据类型bigint-2^63 (-9,223,372,036,854,775,807) 至 2^63-1 (9,223,372,036,854,775,807)Int64-9,223,372,036,854,775,808;即十六进制的 0x8000000000000000至9,223,372,036,854,775,807;即十六进制的 0x7FFFFFFFFFFFFFFFInt64.MinValueInt64binary固定长度的 n 个字节二进制数据。N 必须从 1 到 8,000。 阅读全文

posted @ 2013-05-03 16:37 潘小博1992 阅读(351) 评论(0) 推荐(0) 编辑

摘要: Extjs & Ext.Net 弹出整个浏览器对话框的方法top.Ext.Msg.alert("值");top.Ext.Msg.confirm("值");top.Ext.Msg.notify("值");Ext.getCmp("控件ID").setText("值"); //设置控件的Text值Ext.getCmp("控件ID").setValue("值"); //设置控件的Value值Ext.getCmp("控件ID").getT 阅读全文

posted @ 2013-05-03 16:36 潘小博1992 阅读(172) 评论(0) 推荐(0) 编辑

摘要: 1、把主键定义为自动增长标识符类型MySql在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如:create table customers(id int auto_increment primary key not null, name varchar(15));insert into customers(name) values("name1"),("name2");select id from customers;以上sql语句先创建了customers表,然后插入两条记录,在插入时仅仅设定了name 阅读全文

posted @ 2013-05-03 16:34 潘小博1992 阅读(224) 评论(0) 推荐(0) 编辑