web
htyy521
这个作者很懒,什么都没留下…
展开
-
asp.net在xp环境下运行要 安装IIS和.net framework
要先在xp上面安装.net framework,并注册到iis比如如果你装得2。0就是:C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/aspnet_regiis.exe -i原创 2006-08-28 14:54:00 · 2485 阅读 · 2 评论 -
c#里如何实现控件数组
//建立4个Lable的控件数组,并赋值 private void creatBts() { System.Windows.Forms.Label[] labArry =new System.Windows.Forms.Label[4]; for (int i=0;i { labArry[i] = new Syste原创 2006-09-08 15:13:00 · 6005 阅读 · 0 评论 -
导出到excel的类(一)
using System;using System.IO;using System.Reflection;using System.Data;using System.Data.SqlClient;using RFID.PublicClass.DataBase;namespace RFID.PublicClass.ExcelReport{ /// /// ExcelReport 的摘要说明。原创 2006-05-22 19:45:00 · 783 阅读 · 0 评论 -
c#操作sql server 2000数据库的类。
using System;using System.Configuration;using System.Web;using System.Data.SqlClient ;using System.Data;namespace RFID.PublicClass.DataBase{ /// /// SqlDB 的摘要说明。 /// public class SqlDB { private原创 2006-05-22 19:39:00 · 1316 阅读 · 0 评论 -
登录使用类
using System;using RFID.PublicClass.DataBase;using System.Data;using System.Data.SqlClient;using System.Web;namespace RFID.PublicClass.LogIn{ public class UserRole { private static string TABLE="T原创 2006-05-22 19:46:00 · 1044 阅读 · 0 评论 -
调用只含有输入参数的过程。(asp,oracle)
Response.ContentType = "text/xml";Response.Expires =-1;var conn = Server.CreateObject("ADODB.Connection");conn.Open("sczb","sczb","sczb");var comm= Server.CreateObject("ADODB.Command");var rs = Server原创 2006-06-20 15:32:00 · 926 阅读 · 0 评论 -
ChinaAsp.UpLoad的组建创建问题
先安装组件ChinaAsp,再运行regsvr32 C:/WINDOWS/system32/comsvcs.dll可以解决ChinaAsp.UpLoad的组建创建问题。安装源:http://jz123.cn/soft/6/156/2005/20050709163.html原创 2006-06-09 16:54:00 · 1445 阅读 · 0 评论 -
导出报表到excel(二)
using System;using Excel;namespace RFID.PublicClass.ExcelOut{ /// /// ExcelOut 的摘要说明。 /// public class ExcelOut { private static Excel.Application excel=null; private static Excel._Workbook xBk=原创 2006-11-01 15:55:00 · 954 阅读 · 0 评论 -
解决IE不能打开XML文件的问题
系统是Windows2003安装了某个更新后出现不能通过IE打开XML文件的问题,现象是双击XML文件后或者通过IE打开此类型文件,IE闪一下后再无任何反应.Google一下,找到解决方案:原来只需要把msxml3.dll此文件重新注册一下即可.不过我在运行 regsvr32 -u msxml3.dll 是出现错误的提示对话框.但是并不影响 regsvr32 msxml3.dll重新注册此Dll文原创 2008-10-04 23:27:00 · 6317 阅读 · 0 评论