2010年5月9日

DDL,DML,DCL,TCL四种语言的简介

摘要: 1.DDL (Data Definition Language )数据库定义语言 statements are used to define the database structure or schema. DDL是SQL语言的四大功能之一。用于定义数据库的三级结构,包括外模式、概念模式、内模式及其相互之间的映像,定义数据的完整性、安全控制等约束DDL不需要commit. CREATE ALTE... 阅读全文

posted @ 2010-05-09 14:35 pwm_1987 阅读(1468) 评论(0) 推荐(0) 编辑

2010年5月8日

js 获取前台控件的值

摘要: document.getElementById("Hid").value其中Hid为控件的ID 阅读全文

posted @ 2010-05-08 23:52 pwm_1987 阅读(270) 评论(0) 推荐(0) 编辑

CSS字体Font属性

摘要: CSS字体属性可定义文字所使用的字体。设置文字的字体实例:代码设置字体的大小实例:代码设置字体的款式实例:代码设置字体的形态实例:代码设置字体粗细实例:代码一个声明设置一切字体属性实例:[代码] 阅读全文

posted @ 2010-05-08 23:13 pwm_1987 阅读(201) 评论(0) 推荐(0) 编辑

2010年5月3日

VS2008 无刷新 Repeater 删除功能 ScriptManager UpdatePanel

摘要: 前台代码:[代码]后台代码:[代码]<form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server">... 阅读全文

posted @ 2010-05-03 15:56 pwm_1987 阅读(1141) 评论(0) 推荐(0) 编辑

2010年5月2日

[转帖]c#.net常用的小函数和方法集

摘要: 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... 阅读全文

posted @ 2010-05-02 16:29 pwm_1987 阅读(251) 评论(0) 推荐(0) 编辑

2010年5月1日

asp.net Excel导入和导出

摘要: 1、Excel数据导入到数据库中://该方法实现从Excel中导出数据到DataSet中,其中filepath为Excel文件的绝对路径,sheetname为表示那个Excel表; public DataSet ExcelDataSource( string filepath , string sheetname ) ...{ string strConn; strConn = "Provider... 阅读全文

posted @ 2010-05-01 20:32 pwm_1987 阅读(375) 评论(0) 推荐(0) 编辑

sql海量数据优化

摘要: 具体要注意的: 1.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如: select id from t where num is null 可以在num上设置默认值0,确保表中num列没有null值,然后这样查询: select id from t where num=0 2.应尽量避免在 where 子句中使用!=或<>操作... 阅读全文

posted @ 2010-05-01 20:17 pwm_1987 阅读(309) 评论(0) 推荐(1) 编辑

2010年4月10日

ASP.NET中,页面刷新后跳转到刷新前的位置 MaintainScrollPositionOnPostback属性的使用

摘要: 当页面内容比较多,有滚动条的时候,当用户执行操作执行一次页面回送后,页面刷新又重新从顶端开始显示,用户不得不重新拖动滚动条回到先前的位置,这会给用户带来很不友好的体验。只需在ASP.NET页面的Page指令中设置MaintainScrollPositionOnPostback="true"即可。一般情况下,是默认MaintainScrollPositionOnPostback属性为false的。 阅读全文

posted @ 2010-04-10 10:56 pwm_1987 阅读(898) 评论(2) 推荐(0) 编辑

2010年4月7日

ASP.NET用DropDownList控件来实现省市联动--C#,附SQL2000语句

摘要: html代码:</head><body> <form id="form1" runat="server"> <div> 省: <asp:DropDownList ID="ddlProvince" runat="server" AutoPostBack="True" onselectedindexchanged="ddlProvince_Sel... 阅读全文

posted @ 2010-04-07 21:53 pwm_1987 阅读(2639) 评论(1) 推荐(0) 编辑

SQL Server 行列转换 sql语句

摘要: 面试题:怎么把这样一个表儿year month amount1991 1 1.11991 2 1.21991 3 1.31991 4 1.41992 1 2.11992 2 2.21992 3 2.31992 4 2.4查成这样一个结果year m1 m2 m3 m41991 1.1 1.2 1.3 1.41992 2.1 2.2 2.3 2.4create table t(year varcha... 阅读全文

posted @ 2010-04-07 21:51 pwm_1987 阅读(338) 评论(0) 推荐(1) 编辑

导航