System.Data.OleDb.OleDbException: Unspecified error

  • Thread starter Thread starter caseahr
  • Start date Start date
C

caseahr

My ASP.NET web page was working just fine connecting to an Access DB
and displaying data in a DataGrid. Couldn't be much simpler really.
Then, I had to move the page and its underlying database file to a new
server. Now it ceases to work and gives me ...

Unspecified error
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: Unspecified error

It is NOT a security issue, I assume, since I gave the ASPNET user full
access to the database folder. What else could cause this error?
Anyone know? Thanks.
 
i think the point here is that the asp.net user are not able to create files
in the temporary folder!
you can go to the temp folder ( ex. Document settings\servername\aspnet\)
and there on the temp folder give the full right access for the asp.net
user. ihope this may solve the problem
 
Back
Top