Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>In <strong>.sln</strong> file find section related to your Web Site Project. It looks like this:</p> <pre><code>Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "YourWebProject", "..\WEB\YourWebProject", "{A3774FE1-AA19-4A0F-94C9-FA58084B2429}" ProjectSection(WebsiteProperties) = preProject TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.0" ProjectReferences = "..." Debug.AspNetCompiler.VirtualPath = "/YourWebProject" Debug.AspNetCompiler.PhysicalPath = "..\WEB\YourWebProject\" Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\YourWebProject\" Debug.AspNetCompiler.Updateable = "true" Debug.AspNetCompiler.ForceOverwrite = "true" Debug.AspNetCompiler.FixedNames = "false" Debug.AspNetCompiler.Debug = "True" Release.AspNetCompiler.VirtualPath = "/YourWebProject" Release.AspNetCompiler.PhysicalPath = "..\WEB\YourWebProject\" Release.AspNetCompiler.TargetPath = "PrecompiledWeb\YourWebProject\" Release.AspNetCompiler.Updateable = "true" Release.AspNetCompiler.ForceOverwrite = "true" Release.AspNetCompiler.FixedNames = "false" Release.AspNetCompiler.Debug = "False" VWDPort = "2487" EndProjectSection EndProject </code></pre> <p>and set following properties to "<strong>false</strong>" (I used Notepad to edit .sln file):</p> <ul> <li>Debug.AspNetCompiler.Updateable = "<strong>false</strong>"</li> <li>Release.AspNetCompiler.Updateable = "<strong>false</strong>"</li> </ul> <p>by default they were set to "<strong>true</strong>" and error was occurred:</p> <blockquote> <p>The type or namespace name 'xxxxxxxxx_ascx' does not exist in the namespace 'ASP' (are you missing an assembly reference?)</p> </blockquote> <p>This solution helped me.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload