从网页中继承出来的类的要加上 partial 申明

来源:互联网 发布:java人力资源管理系统 编辑:程序博客网 时间:2024/06/04 00:58
Error 1 Missing partial modifier on declaration of type 'Index'; another partial declaration of this type exists D:/root/www.5xsoft.com/Index.aspx.cs 12 14 D:/root/www.5xsoft.com/
说明:从网页中继承出来的类的要加上 partial 申明
如 public class Index : System.Web.UI.Page
解决:加上 partial 如 public partial class Index : System.Web.UI.Page  
原创粉丝点击