我在ASP.net 4.5中创建了一个简单的FormView
<asp:FormView runat="server"
ItemType="Wms.Models.GuiComponent"
DataKeyNames="GuiComponentId"
DefaultMode="Insert"
SelectMethod="GetItem"
InsertMethod="InsertItem"
RenderOuterTable="false">
<InsertItemTemplate>
<div class="form-container">
<asp:HiddenField runat="server" ID="TypeId" Value="<%# BindItem.TypeId %>"/>
<div class="row">
<asp:Label runat="server" AssociatedControlID="Reference">Reference</asp:Label>
<asp:TextBox runat="server" ID="Reference" TextMode="SingleLine" Text="<%# BindItem.Reference %>" />
</div>
<div class="controls margin-top-05">
<asp:Button ID="btnSubmit" Text="Create" CommandName="Insert" ValidationGroup="GuiComponent" runat="server" />
</div>
</div>
</InsertItemTemplate>
</asp:FormView>
我希望能够预先填充一些字段(例如上面示例中的TypeId),以便将完整的模型返回到InserItem()方法,并且还因为预先填充某些字段可以改善/帮助用户体验(例如常见的默认值)。我曾经想过/希望FormView的SelectMethod可以做到这一点,但显然它没有。
// This method is not called for the InsertItemTemplate
public GuiComponent GetItem()
{
return new GuiComponent
{
// Initialise properties here
TypeId = GuiType.GuiComponentTypeId
};
}
public void InsertItem()
{
var model = new GuiComponent();
try
{
TryUpdateModel(model);
if (ModelState.IsValid)
{
GuiComponentService.Insert(model);
UnitOfWork.SaveChanges();
var url = String.Format("../../ComponentDetail.aspx?id={0}",
model.GuiComponentId);
Response.Redirect(url, false);
}
}
catch (DbEntityValidationException dbException)
{
ModelState.AddException(dbException);
}
catch (Exception ex)
{
ModelState.AddException("", ex);
}
}
我想,我可以直接初始化窗体上的控件,但这看起来很麻烦。
有没有人知道是否有解决方案?
答案 0 :(得分:1)
这是一个老问题,但是:
使用表单视图IntemInserting方法。因此,要设置TypeID,您可以执行以下操作:
protected void FormView_ItemInserting(object sender, FormViewInsertEventArgs e)
{
e.Values["TypeId"] = TheDefaultValue;
}