摘要:
usingSystem;usingSystem.Collections;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Configuration;usingSystem.Data.OleDb;usingSystem.Drawing;usingSystem.Web;usingSystem.IO;usingSystem.Web.Sess...
阅读全文
posted @ 2006-12-14 15:54
自强不息
阅读(278)
推荐(0)
编辑
摘要:
usingSystem;usingSystem.Collections;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Data.OleDb;usingSystem.Drawing;usingSystem.Web;usingSystem.Web.SessionState;usingSystem.Web.UI;usingSystem.W...
阅读全文
posted @ 2006-12-14 15:51
自强不息
阅读(237)
推荐(0)
编辑
摘要:
下面分别以Windows Server 2003、Windows 2000的DNS服务器为例,介绍如何改造它们以实现泛域名解析。我们假设DNS服务器上有一个域rtj.net,要使DNS服务器支持对这个域的泛域名解析。 Windows 2000实现泛域名解析 方法一 打开DNS控制台,在“rtj.net”区域上单击鼠标右键,在弹出的菜单中选择“新建域R...
阅读全文
posted @ 2006-12-08 21:52
自强不息
阅读(1770)
推荐(0)
编辑
摘要:
如何优化SQLServer数据库服务器的内存配置提出一些认识和看法。一、有关内存的基本概念1物理内存与虚拟内存WindowsNT使用两类内存:物理内存与虚拟内存。物理内存:作为RAM芯片安装在计算机内部的存储器。虚拟内存:用于模拟RAM芯片功能的磁盘(硬盘)空间,其实质是通过将内存中当前没有使用的部分内容临时存储到磁盘上,使系统可以使用到比机器物理内存更多的内存。2分页和分页文件Windows...
阅读全文
posted @ 2006-12-04 21:53
自强不息
阅读(1021)
推荐(0)
编辑
摘要:
“/webs”应用程序中的服务器错误。--------------------------------------------------------------------------------访问被拒绝:“db”。说明:执行当前Web请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。异常详细信息...
阅读全文
posted @ 2006-12-04 11:28
自强不息
阅读(446)
推荐(0)
编辑
摘要:
1、由dataset生成 public void CreateExcel(DataSet ds,string typeid,string FileName) { HttpResponse resp; resp = Page.Response; resp.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312"); resp.Append...
阅读全文
posted @ 2006-11-23 15:12
自强不息
阅读(891)
推荐(0)
编辑
摘要:
using System;using System.Data;using System.Xml;using System.Data.SqlClient;using System.Collections;namespace Microsoft.ApplicationBlocks.Data{/// <summary>/// The SqlHelper class is intended t...
阅读全文
posted @ 2006-10-28 23:27
自强不息
阅读(524)
推荐(0)
编辑
摘要:
SQL Server提供了一个特别的数据类型:image,它是一个包含binary数据的类型。下边这个例子就向你展示了如何将文本或照片放入到数据库中的办法。在这篇文章中我们要看到如何在SQL Server中存储和读取图片。 1、建立一个表: 在SQL SERVER中建立这样结构的一个表: 列名 类型 目的 ID Integer 主键ID IMGTITLE Varchar(50) 图片的标题 I...
阅读全文
posted @ 2006-10-28 21:10
自强不息
阅读(285)
推荐(0)
编辑
摘要:
在 ADO.NET 中,可以使用 Connection 和 Transaction 对象来控制事务。若要执行事务,请执行下列操作: 调用 Connection 对象的 BeginTransaction 方法来标记事务的开始。BeginTransaction 返回对 Transaction 的引用。请保留此引用,以便将其分配给在事务中登记的 Command。 将 Transaction 对象...
阅读全文
posted @ 2006-10-28 21:03
自强不息
阅读(390)
推荐(0)
编辑
摘要:
1、如何在.net的应用程序运行其它的EXE文件? 解答:主要应用System.Diagnostics名字空间中的Process类 主要代码:Process proc = new Process(); proc.StartInfo.FileName = @"D:\Program Files\Foxmail\Foxmail.exe"; //可以用绝对路径proc.StartInfo.Argume...
阅读全文
posted @ 2006-10-28 20:56
自强不息
阅读(471)
推荐(0)
编辑