Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://blogs.msdn.com/b/dougste/archive/2008/08/11/clearing-out-temporary-asp-net-files.aspx" rel="nofollow">Clear your Temporary ASP.NET Files</a></p> <p>The method recommended in the linked post seems a bit wonky to me. I prefer the following batch script. Note that this script must be run as an Administrator under Windows Vista / 7.</p> <pre><code>REM del deletes all of the files in the root of the given directory REM for...rmdir removes all of the subdirectories (and any files inside them) underneath the given directory iisreset /stop del /F /Q "%WINDIR%\Microsoft.Net\Framework\v1.1.4322\Temporary ASP.NET Files\*" for /d %%i in ("%WINDIR%\Microsoft.Net\Framework\v1.1.4322\Temporary ASP.NET Files\*") do rmdir /q /s "%%i" del /F /Q "%WINDIR%\Microsoft.Net\Framework\v2.0.50727\Temporary ASP.NET Files\*" for /d %%i in ("%WINDIR%\Microsoft.Net\Framework\v2.0.50727\Temporary ASP.NET Files\*") do rmdir /q /s "%%i" del /F /Q "%WINDIR%\Microsoft.Net\Framework\v4.0.30319\Temporary ASP.NET Files\*" for /d %%i in ("%WINDIR%\Microsoft.Net\Framework\v4.0.30319\Temporary ASP.NET Files\*") do rmdir /q /s "%%i" iisreset /start </code></pre> <hr> <p><strong>Update #1</strong></p> <p>If clearing your Temporary ASP.NET Files doesn't solve the problem, I would suggest creating a new UserControl and copying the markup and the code-behind from the old UserControl (excluding the <code>CodeBehind</code> and <code>Inherits</code> declarations in the markup and the class name of the code-behind file). The CS1061 error can occur if the name of the markup file / code-behind file / code-behind class are not synchronized, and creating a new UserControl is the simplest way to ensure that is not the case.</p>
    singulars
    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. 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