Does Not Implement IReusable
In the past few days I have helped a couple people with an error similar to the following..
'ASP.yourpage_aspx' does not implement interface member 'System.Web.IHttpHandler.IsReusable' c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\mainsite\15512096\b47379d2\App_Web_0_d_2qxo.6.cs
Both times was related to adding name spaces to the code behind and not changing the Inherits on the <Page definition on page markup. So if you are getting this error - go check your name spaces.
Reader Comments (1)
Thanks for that, solved my compiling problems.