发布时间:2013-12-06 21:26:32
<appSettings><add key="sqlCon" value="Data Source=(local);Database=Northwind;Uid=sa;Pwd=;"/></appSettings>protected void Page_Load(object sender, EventArgs e) { string con_sqlserver = ConfigurationManager.AppSettings["sqlCon"].ToString();//获取配置文件中.........【阅读全文】
发布时间:2013-12-04 20:32:05
先创建一个批处理文件入a.bat,在里面输入以下内容@color 24@echo 删除开始@pause@del /f /s /q %systemdrive%\recycler\.@del /f /s /q %systemroot%\prefetch\.@del /f /s /q %systemroot%\temp\.@del /f /s /q "%userprofile%\cookies\."@del /f /s /q "%userprofile%\recent\."@del /f /s /q "%userprofi.........【阅读全文】
发布时间:2013-12-02 20:45:26
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><title>全选与反选</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><script language="javascript">// --列头全选框被单击---function ChkAllClick(sonName, cb.........【阅读全文】
发布时间:2013-12-01 21:18:24
接口:接口是把公共实例(非静态)方法和属性结合起来,以封装特定功能的一个集合。一旦定义了接口,就可以在类中实现它。接口注意事项:接口不能单独存在。不能像实例化一个类那样实例化接口。另外,接口不能包含实现其成员的任何代码,而只能定义成员本身。实现过程必须在实现接口的类中完成。一个类可以支持多个接口,多.........【阅读全文】