asp.net2.0中新建Login移动窗体时的奇怪现象

错误:
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
编译器错误信息: CS0030: 无法将类型“ASP.login_aspx”转换为“System.Web.UI.WebControls.Login”

原因:在 .NET Framework 2.0 版中新增Login类.而我们又增加Login.aspx时莫名地冲突了。这个问题也不给提示,让人分析起来好困难。

解决:删除Login.aspx或使它不关联主命名空间下的login类。
原文地址:https://www.cnblogs.com/always/p/582836.html