要在服务器端装Oracle的,你的机器要是开发也要装。
在Web.config中添加数据库连接的字符窜
 </system.web>
 <appSettings>
        <add key="ConnectionString" value="Provider=MSDAORA.1;User ID=wltmis;password=wltmis;Data Source=wltmis;Persist Security Info=False;" />
 </appSettings> 
protected OleDbConnection myConnection;//定义一个OleDB的连接
myConnection = new OleDbConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);