asp.net about database (error)

来源:互联网 发布:speedgrade什么软件 编辑:程序博客网 时间:2024/04/28 01:46

1.数据库连接信息:oracle
 Provider=MSDAORA;User ID=wkr;Data Source=SCEI;Password=elara

2.application.run()的修改信息

  SystemInfo.InitSystemInfo(xmlPath, new SubConnectionManager());

3.SubConnectionManager的修改信息
System.Data.OleDb.OleDbConnection conn=new System.Data.OleDb.OleDbConnection("Provider=MSDAORA;User ID=wkr;Data Source=SCEI;Password=elara");
   conn.Open();
            return conn;

4.出错处理-------当你在安装asp.net后再安装IIS- -


当你在安装asp.net后再安装IIS,这时,你运行VS2003,就会得到以下错误信息。
Visual Studio .NET has detected that the specified Web server is not running
ASP.NET version 1.1. You will be unable to run ASP.NET Web applications or
services.
就是说你的web服务器是运行1.0的,而用的是1.1,要你升级你的web服务器。
清华的bbs上说的都是重装asp.net1.1或是.net Framework 1.1,其实不需要,方法如下

1.运行"%windir%/Microsoft.NET/Framework/%version%/aspnet_regiis.exe" -i
2.运行regsvr32 %windir%/Microsoft.NET/Framework/%version%/aspnet_isapi.dll

原创粉丝点击