Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<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>
 

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