天道酬勤,厚德载物

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2008年3月25日

摘要: http://dev.yesky.com/topic/330/7779330.shtml 阅读全文
posted @ 2008-03-25 10:43 cobbles 阅读(155) 评论(0) 推荐(0) 编辑

摘要: 什么是数据仓库? 数据库应用程序有两种主要类型:在线事务处理(online transactional processing,OLTP)和数据仓库,数据仓库包括在线分析处理(online analytical processing,OLAP)和数据挖掘应用程序。DB2 9 同时适用于这两种应用程序。OLTP 系统与业务智能(Business Intelligence,BI)数据仓库系统的区别是... 阅读全文
posted @ 2008-03-25 10:38 cobbles 阅读(292) 评论(1) 推荐(0) 编辑

2008年2月19日

摘要: 把GridView控件的内容输出到Excel的方式网上有很多文章,其代码如下所示: ExcelExport.aspx.cs using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; usin... 阅读全文
posted @ 2008-02-19 14:34 cobbles 阅读(237) 评论(0) 推荐(0) 编辑

摘要: 将DataGrid生成excel: Response.Clear(); Response.Buffer= true; Response.Charset="GB2312"; Response.AppendHeader("Content-Disposition","attachment;filename=FileName.xls"); Response.Content... 阅读全文
posted @ 2008-02-19 09:10 cobbles 阅读(237) 评论(0) 推荐(0) 编辑

2008年2月14日

摘要: 装了VS2005再装IIS,结果出了些小问题 访问IIS元数据库失败 思考可能是次序出了问题,解决 1、打开CMD,进入 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 2、输入 aspnet_regiis.exe -i 稍等片刻,注册成功就解决问题了。 接着还会出现“未能创建 Mutex”的问题 解决方法: 1、先关闭你的VS2005。 2、打... 阅读全文
posted @ 2008-02-14 13:16 cobbles 阅读(148) 评论(0) 推荐(0) 编辑

摘要: function window.onbeforeunload() { if(event.clientX>document.body.clientWidth&&event.clientY 1.浏览器不是软件的窗口,要该事件非常困难,因为关闭与刷新这两个事件就很难区分。 2.都没有对应的事件,只能根据一些条件来判断,但未必准确。 3.前进、后退、刷新、关闭都响应事件window.onbeforeun... 阅读全文
posted @ 2008-02-14 11:41 cobbles 阅读(1597) 评论(0) 推荐(0) 编辑

2007年11月27日

摘要: 首先发送请求,然后处理响应。我用.net写的WebService,直接访问,点击方法名称可以看到实例代码,只需要在asp中使用Microsoft.XMLHTTP发送请求,然后处理xml的结果就行了。 要注意Namespace不能写错了。 " strxml = strxml & "" strxml = strxml & " " strxml = strxml & "" strx... 阅读全文
posted @ 2007-11-27 15:46 cobbles 阅读(506) 评论(0) 推荐(0) 编辑

2007年11月20日

摘要: The nature of a DataSet requires that it is either typed or untyped. By definition a typed DataSet is any DataSet that is derived from the base DataSet class that applies the information contained in ... 阅读全文
posted @ 2007-11-20 12:34 cobbles 阅读(165) 评论(0) 推荐(0) 编辑

摘要: Typed DataSets in .NET By Ramaprasad Upadhyaya February 03, 2004 As all of we know, we can specify the data type when we create a DataColumn for a DataTable. This is to enforce the runtime type-sa... 阅读全文
posted @ 2007-11-20 11:49 cobbles 阅读(174) 评论(0) 推荐(0) 编辑

摘要: From Mike Chapple, Your Guide to Databases. FREE Newsletter. Sign Up Now!If you've been working with databases for a while, chances are you've heard the term normalization. Perhaps someone's asked you... 阅读全文
posted @ 2007-11-20 11:18 cobbles 阅读(349) 评论(0) 推荐(0) 编辑