.NET Framework.........
-
I have just installed the .NET Framework 1.1 on my machine. But the web application I was developing can no longer access the database I have. I keep getting the error..... System.Data.OleDb.OleDbException: Unspecified error Now I know it has something or other to do with permissions. And Have been messing around with every option I can find but still it doesn't want to access it. Another strage thing it is doing, is I have a number of different .jpgs for the different webforms. And because when I upload it to my webhost it doesn't recognise the file path c:\webapplication....etc etc I simply store all the .jpgs in the root folders and just access it by Image1.jpg instead of having a path name. Right now one of my webforms beckground is blank, if I change it to Image4.Jpg it shows up, if I change it back to Image5.jpg it goes blank again, despite both files being in the root folder. Any help would be appreciated.
-
I have just installed the .NET Framework 1.1 on my machine. But the web application I was developing can no longer access the database I have. I keep getting the error..... System.Data.OleDb.OleDbException: Unspecified error Now I know it has something or other to do with permissions. And Have been messing around with every option I can find but still it doesn't want to access it. Another strage thing it is doing, is I have a number of different .jpgs for the different webforms. And because when I upload it to my webhost it doesn't recognise the file path c:\webapplication....etc etc I simply store all the .jpgs in the root folders and just access it by Image1.jpg instead of having a path name. Right now one of my webforms beckground is blank, if I change it to Image4.Jpg it shows up, if I change it back to Image5.jpg it goes blank again, despite both files being in the root folder. Any help would be appreciated.
It's ok I found and fixed the problem. For reference the problem was.... In the .NET Framework 1.0, ASP.NET applications use the TEMP folder that is designated by the environment variables to store temporary files. In .NET Framework 1.1, ASP.NET applications use the profile folder for the local ASPNET account to write temporary files. This profile folder is C:\Documents and Settings\ServerName\ASPNET\TEMP. The ASPNET account has permissions to write to this folder.