BuildManager Resolving Page Inheritance

后端 未结 2 1988
无人共我
无人共我 2021-01-14 09:28

I have written a VirtualPathProvider to change how aspx pages are loaded into my ASP.Net application. As part of this process I have removed Code-Behind files and I am simpl

2条回答
  •  无人共我
    2021-01-14 09:53

    Possible causes:

    1. If you refer to any code behind module in .aspx pages or Global.asax page and the web application has'nt been built then you get this error. Just build the application again and make sure that the type Namespace.PageClass is available in one of the web application assemblies.

      Use @Assembly directive to link the assembly to the aspx page at compile time.

      @ Assembly Name="assemblyname" Src="pathname" makes all the assembly's classes and interfaces available for use.

    2.Another reason for such an error could be a wrong version of ASP.NET configured in IIS. To select the correct version of ASP.NET in IIS

    1. Go to Start Menu, click on Run (alternatively use Win Key + R )

    2. Type INetMgr and press enter to open Internet Information Services Application

    3. Expand the tree node displaying local computer name and navigate to Web Sites-->Default Web Site

    4. Right click on Default Web Site node and select the popup menu option Properties

      5.Navigate to ASP.NET tab in the properties page and set the correct/latest version.

提交回复
热议问题