Can't access site -- error message

Discussion in 'Databases' started by jrsh, Jul 13, 2009.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I'm not sure if this is the appropriate area for this issue but any help would be greatly appreciated. This is the error message I receive when trying to access my site:

    Server Error in '/' Application.
    --------------------------------------------------------------------------------

    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

    Parser Error Message: Could not load file or assembly 'WebPageSecurity' or one of its dependencies. The system cannot find the file specified. (E:\web\eggdonorsel\htdocs\web.config line 81)

    Source Error:


    Line 79: <add
    Line 80: name="WebPageSecurity"
    Line 81: type="Ventaur.Web.Security.SecureWebPageModule,
    Line 82: WebPageSecurity" />
    Line 83:


    Source File: E:\web\eggdonorsel\htdocs\web.config Line: 81


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

    My current web designer is looking into it. They were not responsible for developing our original site.

    Thank you for any direction or help you can provide.

    julie
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    this err usually means that you did not upload the necessary dll into the bin directory.
     
  3. Hi,
    Try Bruce's suggestion then...
    Are you running this in IIS7 Integrated mode?
    If so try it like this:
    <add name="WebPageSecurity"
    type="Ventaur.Web.Security.SecureWebPageModule, WebPageSecurity"
    preCondition="managedHandler" />
    All the best,
    Mark
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page