0

我想在我的自定义 FormView 控件中设置一个用于编辑/插入和查看的模板。但我得到了这些奇怪的例外

Unable to cast object of type 'System.Web.UI.LiteralControl' to type 'System.Web.UI.WebControls.Table'.

public class CustomFormView : FormView
    {
        [PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(FormView), BindingDirection.TwoWay)]
        public IBindableTemplate FormTemplate { get; set; }

        protected override void OnInit(EventArgs e)
        {
            ChangeMode(FormViewMode.Edit);
            if (FormTemplate != null)
            {
                if (CurrentMode == FormViewMode.Edit)
                {
                    FormTemplate.InstantiateIn(this);
                }
            }
            base.OnInit(e);
        }
    }

编辑:

在第一步中,我创建了新的用户控件并添加了一个表单视图(“FV”)

public partial class Form : UserControl
{
    private IBindableTemplate _template = null;

    [PersistenceMode(PersistenceMode.InnerProperty),
    TemplateContainer(typeof(FormView), System.ComponentModel.BindingDirection.TwoWay)]
    public IBindableTemplate FormTemplate { set;get }

    protected void Page_Init()
    {
        if (FormTemplate != null)
        {
            FV.InsertItemTemplate = FV.EditItemTemplate = FormTemplate;
            if (!IsPostBack) FormTemplate.InstantiateIn(FV);
        }
    }
}

现在,我想将此用户控件转换为 Web 控件。

如果您能回答我的问题,我将不胜感激。

4

1 回答 1

1

你到底想做什么?

不管你想做什么,你都做错了。

TemplateContainer(typeof(FormView))这是不可能的。

你需要在那里提供你自己的类型,继承自IDataItemContainer.

编辑:

我不建议仅仅因为您想要 1 个模板进行编辑和插入而投入所有这些精力。最好将相同的内容放在两个模板中。经验表明,随着时间的推移,您将需要不同的编辑和插入功能。

于 2010-08-17T13:13:32.303 回答