下载VWD
今天安装了一下 VWD , 发现AspNet2.0Beta1有一个兼容性的Bug。这个问题主要是
<head id=”head1” runat=server> 在asp.net1.1之前是 HtmlGenericControl ,而在 Asp.Net2 中是 HtmlHead , 并且这个 HtmlHead 不是继承 HtmlGenericControl 的。
这就导致了这个文件不能编译过去:
Parser Error Message: The base class includes the field 'htmlHead', but its type (System.Web.UI.HtmlControls.HtmlGenericControl) is not compatible with the type of control (System.Web.UI.HtmlControls.HtmlHead).
解决方法当然有,不过很麻烦。希望能从 AspNet2 上直接把这个问题解决掉。