Do controls need to be defined in a web app or will .NET do it for you

Posted by Chris on Stack Overflow See other posts from Stack Overflow or by Chris
Published on 2010-03-29T22:09:33Z Indexed on 2010/03/29 22:13 UTC
Read the original article Hit count: 292

Filed under:
|

I always thought that when you dropped a control onto an .aspx page that a declaration of that control ended up being generated for you (either in a designer file, or within your code behind). All of the apps I have worked on have worked this way.
A coworker of mine was installing resharper and it was showing that all her code behind pages would not build. Turned out that resharper could not find a definition for any control that she has dropped onto her markup. She has no designer files, and no declarations in markup. Do they get automatically built when putting together the partial classes? Is there an option at that page/project level to instruct .NET to do this for you? Is this a difference between web app and web site?

This is a a .NET 3.5 site, C#, and it is running in a production environment.

Thanks in advance

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET