必须填写至少10个字的日志
nnhy 编写于 2012-07-27 18:48:21
X
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using NewLife.CommonEntity.Web;
using NewLife.YWS.Entities;

public partial class EntityForm2Test : System.Web.UI.Page
{
    EntityForm2 EntityForm;
    protected override void OnPreInit(EventArgs e)
    {
        EntityForm = new EntityForm2(this, typeof(Admin));
        EntityForm.CanSave = true;
        base.OnPreInit(e);
    }

    protected void Page_Load(object sender, EventArgs e)
    {

    }
}