473,508 Members | 2,236 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.net and Oracle error System.Data.OleDb.OleDbException

Hello all,
My asp.net web application works on my machine but I get the following error
on our test web server, There is only one oracle home on the test server.
Does anyone know how to resolve this error?

Oracle error occurred, but error message could not be retrieved from Oracle.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Oracle error occurred,
but error message could not be retrieved from Oracle.

Source Error:
Line 220: cmBS.CommandType = CommandType.StoredProcedure;
Line 221: cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
Line 222:
Line 223: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 224: daBS.SelectCommand = cmBS;
Source File: c:\inetpub\wwwroot\Myfile\myaspxpage.aspx.cs Line: 222

Stack Trace:
[OleDbException (0x80004005): Oracle error occurred, but error message could
not be retrieved from Oracle.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable) +36
WebReportMenu.BlanketContract.getData() in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:222
WebReportMenu.BlanketContract.Page_Load(Object sender, EventArgs e) in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:102
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +750


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
Nov 20 '05 #1
5 9627
Is this how you use stored proc when using ORACLE "cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
"?
And are you sure your connection string is ok.
"petro" <pe***@discussions.microsoft.com> wrote in message
news:10**********************************@microsof t.com...
Hello all,
My asp.net web application works on my machine but I get the following error on our test web server, There is only one oracle home on the test server.
Does anyone know how to resolve this error?

Oracle error occurred, but error message could not be retrieved from Oracle. Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Oracle error occurred, but error message could not be retrieved from Oracle.

Source Error:
Line 220: cmBS.CommandType = CommandType.StoredProcedure;
Line 221: cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
Line 222:
Line 223: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 224: daBS.SelectCommand = cmBS;
Source File: c:\inetpub\wwwroot\Myfile\myaspxpage.aspx.cs Line: 222

Stack Trace:
[OleDbException (0x80004005): Oracle error occurred, but error message could not be retrieved from Oracle.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecor d, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable) +36 WebReportMenu.BlanketContract.getData() in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:222
WebReportMenu.BlanketContract.Page_Load(Object sender, EventArgs e) in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:102
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +750


-------------------------------------------------------------------------- ------ Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032

Nov 20 '05 #2
First let me say, thanks for responding any assistance is greatly appreciated
I have been struggling with this for days and this project was supposed be go
live by today!

Yes I do use OracleInstance.GETBLANKETSTATUS.procListBlanketSta tus
and my application does work on my computer but it does not work when I move
it to a web server.
This is my connection string:
"provider=MSDAORA; User Id=myUSER; Data Source=OracleDev;
Password=myPassword;"

Here is some of my connection code:
OleDbCommand cmBS = new OleDbCommand();
cmBS.Connection = oCn;
cmBS.CommandType = CommandType.StoredProcedure;
cmBS.CommandText =
"OracleInstance.PIMA_GETBLANKETSTATUS.pima_procLis tBlanketStatus";

OleDbDataAdapter daBS = new OleDbDataAdapter();
daBS.SelectCommand = cmBS;
daBS.AcceptChangesDuringFill = false;
daBS.Fill(DS,"BLANKET_STATUS");
I have created a test app with different providers and when I use
OraOLEDB.Oracle I get an error.
This is the connections string
"provider=OraOLEDB.Oracle; User Id=myUSER; Data Source=OracleDev;
Password=myPassword;"

This is the new error:
No error information available: REGDB_E_CLASSNOTREG(0x80040154).
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: No error information
available: REGDB_E_CLASSNOTREG(0x80040154).

Source Error:

Line 40: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 41: daBS.SelectCommand = cmBS;
Line 42: daBS.Fill(DS,"BLANKET_STATUS");
Line 43:
Line 44: //this.ugTest.DataBind
Source File: c:\inetpub\wwwroot\oraoledb_connection\webform1.as px.cs
Line: 42

Stack Trace:

[OleDbException (0x80040154): No error information available:
REGDB_E_CLASSNOTREG(0x80040154).]

[InvalidOperationException: The 'OraOLEDB.Oracle' provider is not registered
on the local machine.]
System.Data.OleDb.OleDbConnection.CreateProviderEr ror(Int32 hr)
System.Data.OleDb.OleDbConnection.CreateProvider(O leDbConnectionString
constr)
System.Data.OleDb.OleDbConnection.Open()
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState)
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior)
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
OraOLEDB_Connection.WebForm1.Page_Load(Object sender, EventArgs e) in
c:\inetpub\wwwroot\oraoledb_connection\webform1.as px.cs:42
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032


"Patrick.O.Ige" wrote:
Is this how you use stored proc when using ORACLE "cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
"?
And are you sure your connection string is ok.
"petro" <pe***@discussions.microsoft.com> wrote in message
news:10**********************************@microsof t.com...
Hello all,
My asp.net web application works on my machine but I get the following

error
on our test web server, There is only one oracle home on the test server.
Does anyone know how to resolve this error?

Oracle error occurred, but error message could not be retrieved from

Oracle.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information

about
the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Oracle error

occurred,
but error message could not be retrieved from Oracle.

Source Error:
Line 220: cmBS.CommandType = CommandType.StoredProcedure;
Line 221: cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
Line 222:
Line 223: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 224: daBS.SelectCommand = cmBS;
Source File: c:\inetpub\wwwroot\Myfile\myaspxpage.aspx.cs Line: 222

Stack Trace:
[OleDbException (0x80004005): Oracle error occurred, but error message

could
not be retrieved from Oracle.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecor

d,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)

+36
WebReportMenu.BlanketContract.getData() in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:222
WebReportMenu.BlanketContract.Page_Load(Object sender, EventArgs e) in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:102
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +750


--------------------------------------------------------------------------

------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;

ASP.NET
Version:1.1.4322.2032


Nov 20 '05 #3
Petro trying going through this article at:-
http://www.c-sharpcorner.com/Code/20.../ODP.NET02.asp
Amd also:
http://www.microsoft.com/downloads/d...429-17dc-45ea-
bfb3-076d1c052524&displaylang=en
Also see http://www.connectionstrings.com/ and try other providers
Hope that helps
Patrick

"petro" <pe***@discussions.microsoft.com> wrote in message
news:73**********************************@microsof t.com...
First let me say, thanks for responding any assistance is greatly appreciated I have been struggling with this for days and this project was supposed be go live by today!

Yes I do use OracleInstance.GETBLANKETSTATUS.procListBlanketSta tus
and my application does work on my computer but it does not work when I move it to a web server.
This is my connection string:
"provider=MSDAORA; User Id=myUSER; Data Source=OracleDev;
Password=myPassword;"

Here is some of my connection code:
OleDbCommand cmBS = new OleDbCommand();
cmBS.Connection = oCn;
cmBS.CommandType = CommandType.StoredProcedure;
cmBS.CommandText =
"OracleInstance.PIMA_GETBLANKETSTATUS.pima_procLis tBlanketStatus";

OleDbDataAdapter daBS = new OleDbDataAdapter();
daBS.SelectCommand = cmBS;
daBS.AcceptChangesDuringFill = false;
daBS.Fill(DS,"BLANKET_STATUS");
I have created a test app with different providers and when I use
OraOLEDB.Oracle I get an error.
This is the connections string
"provider=OraOLEDB.Oracle; User Id=myUSER; Data Source=OracleDev;
Password=myPassword;"

This is the new error:
No error information available: REGDB_E_CLASSNOTREG(0x80040154).
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: No error information
available: REGDB_E_CLASSNOTREG(0x80040154).

Source Error:

Line 40: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 41: daBS.SelectCommand = cmBS;
Line 42: daBS.Fill(DS,"BLANKET_STATUS");
Line 43:
Line 44: //this.ugTest.DataBind
Source File: c:\inetpub\wwwroot\oraoledb_connection\webform1.as px.cs
Line: 42

Stack Trace:

[OleDbException (0x80040154): No error information available:
REGDB_E_CLASSNOTREG(0x80040154).]

[InvalidOperationException: The 'OraOLEDB.Oracle' provider is not registered on the local machine.]
System.Data.OleDb.OleDbConnection.CreateProviderEr ror(Int32 hr)
System.Data.OleDb.OleDbConnection.CreateProvider(O leDbConnectionString
constr)
System.Data.OleDb.OleDbConnection.Open()
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState)
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior)
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
OraOLEDB_Connection.WebForm1.Page_Load(Object sender, EventArgs e) in
c:\inetpub\wwwroot\oraoledb_connection\webform1.as px.cs:42
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()


-------------------------------------------------------------------------- ------ Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032


"Patrick.O.Ige" wrote:
Is this how you use stored proc when using ORACLE "cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
"?
And are you sure your connection string is ok.
"petro" <pe***@discussions.microsoft.com> wrote in message
news:10**********************************@microsof t.com...
Hello all,
My asp.net web application works on my machine but I get the following

error
on our test web server, There is only one oracle home on the test server. Does anyone know how to resolve this error?

Oracle error occurred, but error message could not be retrieved from

Oracle.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information
about
the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Oracle error

occurred,
but error message could not be retrieved from Oracle.

Source Error:
Line 220: cmBS.CommandType = CommandType.StoredProcedure;
Line 221: cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
Line 222:
Line 223: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 224: daBS.SelectCommand = cmBS;
Source File: c:\inetpub\wwwroot\Myfile\myaspxpage.aspx.cs Line: 222

Stack Trace:
[OleDbException (0x80004005): Oracle error occurred, but error message

could
not be retrieved from Oracle.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection
connection, ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecor d,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String
srcTable) +36
WebReportMenu.BlanketContract.getData() in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:222
WebReportMenu.BlanketContract.Page_Load(Object sender, EventArgs e)

in c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:102
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +750

--------------------------------------------------------------------------
------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;

ASP.NET
Version:1.1.4322.2032


Nov 20 '05 #4
It sounds like you need to download the oraoledb driver from oracle and
install it on the server

The oledb driver is not part of the 'standard' oracle client install
package... It is only installed when you choose custom or a 'developer' type
install

The easiest way to tell if it's installed: go to start -> programs ->
oracle home x.xx -> application development -> OraOLEDB
Documentation.html... if that link does not exist, you don't have the driver
installed... (Of course there are other ways to figure it out, but that's
what I check first)

Go to technet.oracle.com and find your way to driver downloads... If you
have the client installation cd, you can probably custom install it from
there.... It Oledb for oracle is also installed when you install their .net
suite of tools...

If you can use oraoledb, I would stick with it; OO4O and ODP.net are better
for accessing oracle, but neither are easily portable to other db's (whereas
oracle's ole db driver is--codewise at least)....
"petro" <pe***@discussions.microsoft.com> wrote in message
news:10**********************************@microsof t.com...
Hello all,
My asp.net web application works on my machine but I get the following
error
on our test web server, There is only one oracle home on the test server.
Does anyone know how to resolve this error?

Oracle error occurred, but error message could not be retrieved from
Oracle.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about
the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Oracle error
occurred,
but error message could not be retrieved from Oracle.

Source Error:
Line 220: cmBS.CommandType = CommandType.StoredProcedure;
Line 221: cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
Line 222:
Line 223: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 224: daBS.SelectCommand = cmBS;
Source File: c:\inetpub\wwwroot\Myfile\myaspxpage.aspx.cs Line: 222

Stack Trace:
[OleDbException (0x80004005): Oracle error occurred, but error message
could
not be retrieved from Oracle.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32
startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
+36
WebReportMenu.BlanketContract.getData() in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:222
WebReportMenu.BlanketContract.Page_Load(Object sender, EventArgs e) in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:102
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +750


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
Version:1.1.4322.2032

Nov 20 '05 #5
We got it working! The system admisinstrator downloaded the current MDAC and
uninstalled and reinstalled Oracle and now it works. Thanks for your replies.

"Eric" wrote:
It sounds like you need to download the oraoledb driver from oracle and
install it on the server

The oledb driver is not part of the 'standard' oracle client install
package... It is only installed when you choose custom or a 'developer' type
install

The easiest way to tell if it's installed: go to start -> programs ->
oracle home x.xx -> application development -> OraOLEDB
Documentation.html... if that link does not exist, you don't have the driver
installed... (Of course there are other ways to figure it out, but that's
what I check first)

Go to technet.oracle.com and find your way to driver downloads... If you
have the client installation cd, you can probably custom install it from
there.... It Oledb for oracle is also installed when you install their .net
suite of tools...

If you can use oraoledb, I would stick with it; OO4O and ODP.net are better
for accessing oracle, but neither are easily portable to other db's (whereas
oracle's ole db driver is--codewise at least)....
"petro" <pe***@discussions.microsoft.com> wrote in message
news:10**********************************@microsof t.com...
Hello all,
My asp.net web application works on my machine but I get the following
error
on our test web server, There is only one oracle home on the test server.
Does anyone know how to resolve this error?

Oracle error occurred, but error message could not be retrieved from
Oracle.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about
the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Oracle error
occurred,
but error message could not be retrieved from Oracle.

Source Error:
Line 220: cmBS.CommandType = CommandType.StoredProcedure;
Line 221: cmBS.CommandText =
"OracleInstance.GETBLANKETSTATUS.procListBlanketSt atus";
Line 222:
Line 223: OleDbDataAdapter daBS = new OleDbDataAdapter();
Line 224: daBS.SelectCommand = cmBS;
Source File: c:\inetpub\wwwroot\Myfile\myaspxpage.aspx.cs Line: 222

Stack Trace:
[OleDbException (0x80004005): Oracle error occurred, but error message
could
not be retrieved from Oracle.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32
startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable)
+36
WebReportMenu.BlanketContract.getData() in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:222
WebReportMenu.BlanketContract.Page_Load(Object sender, EventArgs e) in
c:\inetpub\wwwroot\webreportmenu\blanketcontract.a spx.cs:102
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +750


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
Version:1.1.4322.2032


Nov 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5406
by: G.Esmeijer | last post by:
Friends, The following code works fin. BUT... after a >> couple times<< this code is used is a class it comes with an error saying unhandled System.Data.OleDb.OleDbException' occurred in...
0
5263
by: silesius | last post by:
I've been using VS 2003 to develop a webapplication using C#. Today I exported the application to a remote webserver I begun experiencing problems. It's a simple application that retrieves some...
0
2740
by: silesius | last post by:
I've been using VS.NET 2003 to develop a webapplication using C#. Today I exported the application to another webserver I begun experiencing problems. It's a simple application that retrieves...
3
8814
by: Brian Foree | last post by:
I am developing an ASP.NET application that uses Access 2000 as its backend, and have just started getting the following error on 2 ASP.NET pages that had been working until late last week (and I...
0
5620
by: NicK chlam via DotNetMonster.com | last post by:
this is the error i get System.Data.OleDb.OleDbException: Syntax error in INSERT INTO statement. at System.Data.Common.DbDataAdapter.Update(DataRow dataRows, DataTableMapping tableMapping) at...
6
15357
by: Learner | last post by:
Hi there, I am trying to access the access database sitting at OleDbConnection oleConn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Program Files\\Microsoft Visual...
0
1629
by: John G | last post by:
I have been using Oracle Helper to connect to my oracle 9i Db. When excute text it works fine, but when I try to execute a store procedure I get the following error message. I searched...
0
1717
ammoos
by: ammoos | last post by:
hi friends I am facing one problem while trying to open connection of Oledb Data for excel. I am getting the error "System.Data.OleDb.OleDbException: Unspecified error " i am using the code ...
1
6424
by: AlsonToh | last post by:
No value given for one or more required parameters. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information...
0
7391
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7054
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5633
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing,...
1
5056
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4713
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3204
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3188
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
768
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
424
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.