I have a following code in the page. I have installed Oracle Client and did add to reference in the solution explorer. This example works in
VB.Net but not in ASP.Net. Do you have any solution for this error message. Compiler generates error message that "system.data.OracleClient" Cannot be found. It looks like configuration of some files are missing. Your help is highly appreciated.
Thanks
Nagender
<%@ page language="
VB" runat="server" %>
<%@ Import Namespace="System" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="CoreLab.Oracle" %>
<script Language="
vb" runat="server" >
Dim oOracleConn As OracleConnection = New OracleConnection()
dim myConnString = "Data source=local.world;user id=user;password=userpw;"
Dim myConnection As New OracleConnection(myConnString)
myConnection.Open()
</script>