Tuesday, February 26, 2013

Set up ASP.NET web application default start up page in IIS 7.0

It's essential you need to set the starting page of your ASP.net application in IIS 7.0. hear i have provided the solution to do that

  • Go to IIS 7.0
  • Select the Published ASP.NET application
  • In the right side double click the Default document
  • There add your Start up page


(Solved) Error: HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory.


When you publish a ASP.NET application in IIS 7.0 you may getting this error.

HTTP Error 403.14 - Forbidden
The Web server is configured to not list the contents of this directory.
To Solve this,

  • Add a Start up page for your published application in IIS.





(Solved) Error: Could not load file or assembly 'Oracle.DataAccess' or one of its dependencies. An attempt was made to load a program with an incorrect format.

When you publish a ASP.NET application in IIS you may getting this error.

"Could not load file or assembly 'Oracle.DataAccess' or one of its dependencies. An attempt was made to load a program with an incorrect format." To Solve this,


  • Go to IIS
  • Double click the Application Pool
  • Right click the application pool you are using for your application
  • Select Advanced Settings
  • There you can see Enable 32 bit Application set to False
  • Change that to True 
  • It will work now