ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T04:39:09Z http://stackoverflow.com/feeds/question/38670 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008 2 ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Sara Chipps 2008-09-02T01:10:54Z 2009-04-09T20:34:30Z <p>Ok, so, my visual studio is broken. I say this NOT prematurely, as it was my first response to see where I had messed up in my code. When I add controls to the page I can't reference all of them in the code behind. Some of them I can, it seems that the first few I put on a page work, then it just stops. </p> <p>I first thought it may be the type of control as initially I was trying to reference a repeater inside an update panel. I know I am correctly referencing the code behind in my aspx page. But just in case it was a screw up on my part I started to recreate the page from scratch and this time got a few more controls down before VS stopped recognizing my controls.</p> <p>After creating my page twice and getting stuck I thought maybe it was still the type of controls. I created a new page and just threw some labels on it. No dice, build fails when referencing the control from the code behind. </p> <p>In a possibly unrelated note when I switch to the dreaded "design" mode of the aspx pages VS 2008 errors out and restarts. </p> <p>I have already put a trouble ticket in to Microsoft. I uninstalled all add-ins, I reinstalled visual studio. </p> <p>Anyone that wants to see my code just ask, but I am using the straight WYSIWYG visual studio "new aspx page" nothing fancy.</p> <p>I doubt anyone has run into this, but have you? </p> <p>Has anyone had success trouble shooting these things with Microsoft? Any way to expedite this ticket without paying??? I have been talking to a rep from Microsoft for days with no luck yet and I am dead in the water. </p> <p>Thank you. </p> <p><hr /></p> <p><strong>Jon Limjap:</strong> I edited the title to both make it clear and descriptive <em>and</em> make sure that nobody sees it as offensive. "Foo-barred" doesn't exactly constitute a proper question title, although your question is clearly a valid one.</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/38676#38676 0 Answer by Ed for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Ed 2008-09-02T01:20:54Z 2008-09-02T01:20:54Z <p>I have never had problems with VS. If you want to send your code I'll try it out.</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/38688#38688 3 Answer by Sean Lynch for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Sean Lynch 2008-09-02T01:31:22Z 2008-09-02T01:31:22Z <p>Is the control that you are trying to reference inside of the repeater?</p> <p>If so then you need to look them up using the FindControl method.</p> <p>For example for:</p> <pre><code>&lt;asp:Repeater ID="Repeater1" runat="server"&gt; &lt;ItemTemplate&gt; &lt;asp:LinkButton ID="LinkButton1" runat="server"&gt;stest&lt;/asp:LinkButton&gt; &lt;/ItemTemplate&gt; &lt;/asp:Repeater&gt; </code></pre> <p>You would need to do this to reference it:</p> <pre><code>LinkButton lb = Repeater1.FindControl("LinkButton1"); </code></pre> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/38704#38704 5 Answer by Brian Boatright for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Brian Boatright 2008-09-02T02:12:06Z 2008-09-02T02:12:06Z <p>try clearing your local VS cache. find your project and delete the folder. the folder is created by VS for what reason I honestly don't understand. but I've had several occasions where clearing it and doing a re-build fixes things... hope this is all that you need as well.</p> <p>here C:\Documents and Settings\Administrator\Local Settings\Temp\VWDWebCache</p> <p>and possibly </p> <p>here C:\Documents and Settings\Administrator\Local Settings\Application Data\Microsoft\WebsiteCache</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/38832#38832 0 Answer by Sara Chipps for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Sara Chipps 2008-09-02T04:43:06Z 2008-09-02T04:43:06Z <p>Brian, </p> <p>I think you may have nailed it. So far so good, thanks! Took a little hunting to find those folders in Vista :)</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/39339#39339 0 Answer by Danimal for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Danimal 2008-09-02T12:04:24Z 2008-09-02T12:04:24Z <p>I have indeed run into this as well, and many thanks to @Brian Boatright for the advice!</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/582262#582262 0 Answer by Ausdom for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Ausdom 2009-02-24T15:48:39Z 2009-02-24T15:48:39Z <p>I had this problem after i did some refactoring. Check that the namespace of the .aspx.designer.cs file is the same as the .aspx.cs file, in my case it was missing. Also in my designer source markup file it had a &lt;%@ Import Namespace="yournamespace.com"%></p> <p>I also removed the import statement.</p> http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/735840#735840 1 Answer by Roger for ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Roger 2009-04-09T20:34:30Z 2009-04-09T20:34:30Z <p>you will also find .net temp files which are safe to delete here: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files</p>