表单视图和外部IBindableTemplate

时间:2010-08-17 10:54:45

标签: c# asp.net formview ibindabletemplate

我想在我的自定义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);
        }
    }

已编辑:

在第一步中,我创建了新的用户控件并添加了一个formview(“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控件。

如果你能回复我的问题,我将不胜感激。

1 个答案:

答案 0 :(得分:1)

你究竟想做什么?

无论你想做什么,你都做错了。

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

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

修改

我不建议将所有这些工作放在一边,因为你想要一个模板进行编辑和插入。最好在两个模板中放置相同的内容。经验告诉您,随着时间的推移,您将需要不同的功能进行编辑和插入。