3

我在 FormView 中有 ascx 控件。我想要的是在 ascx 中使用语法 Bind。这是我的页面:

    <asp:ObjectDataSource runat="server" ID="ods" TypeName="MyDS" SelectMethod="Get" UpdateMethod="Update" DataObjectTypeName="Ent">
    </asp:ObjectDataSource>
    <asp:FormView runat="server" DefaultMode="Edit" ID="fv1" DataSourceID="ods">
        <EditItemTemplate>
            <uc1:WebUserControl ID="WebUserControl1" runat="server" />
            <asp:Button runat="server" CommandName="Update" Text="Update"/>
        </EditItemTemplate>
    </asp:FormView>

这是 WebUserControl.ascx:

<asp:TextBox ID="txt1" runat="server" Text='<%# Bind("Name") %>' />

在 TextBox 中选择值时一切正常。Bind 使用预期值填充文本框。但是,当按下“更新”按钮时,ObjectDataSource 的方法 Update 获取 Ent 的实例,其名称为 null,而输入的文本是预期的。只是为了测试,我已将文本框放入 .aspx 中,一切正常。

最后我通过反射器 FormView 进行了反编译,其中 ExtractRowValues 看起来失败了,因为它只迭代直接子级。有人知道如何使用子绑定吗?

4

2 回答 2

3

抱歉,如果这有点晚了:-)

‘绑定’是一头奇怪的野兽。无处没有 Bind 方法。它只是一个特定的 ASP.NET 令牌,它指示 ASP.NET 编译器在数据绑定上添加“Eval”调用(确实有一个Eval方法),并为双向绑定生成特定的提取代码隐藏方法。

但是这个方法只被添加(并在提取时调用)具有ITemplate属性的控件(例如 FormView 的 ItemTemplate、EditItemTemplate 等),并且声明为可双向绑定的。

不幸的是,对于用户控件(ascx),没有简单的方法可以生成这种方法。

但是,您可以在用户控件中实现IBindableControl 接口,该接口允许一些集成,尽管它的自动化程度较低,声明性较低,如下所示:

WebUserControl.ascx:

<asp:TextBox ID="txt1" runat="server" Text='<%# Eval("Name") %>' />

(注意 Bind 是没用的,所以你可以坚持使用 Eval)。

WebUserControl.ascx.cs:

public partial class WebUserControl : UserControl, IBindableControl
{
    public void ExtractValues(IOrderedDictionary dictionary)
    {
        dictionary["Name"] = txt1.Text;
    }
}
于 2012-12-04T13:36:15.390 回答
2

您必须将<%# Bind("") %>语法从用户控件 (ASCX) 移动到包含页面 (ASPX) 并使用用户控件中的属性来获取和设置表单值。我下面的示例改编自http://oudinia.blogspot.co.uk/2007/12/aspnet-20-and-up-c-user-control-within.html给出的解决方案,并提供了更多详细信息以供尝试使其现实:

ASCX 加价:

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="PaperForm.ascx.cs" Inherits="PaperForm" %>

<asp:ValidationSummary runat="server" HeaderText="<b>Please supply the missing information below.</b>" />

<p class="SectionHeading">Section A: Your Details</p>
<table border="1" width="100%">
  <tr>
    <td width="220px">Membership number</td>
    <td colspan="3"><asp:TextBox ID="txtMemNo" runat="server" MaxLength="9"></asp:TextBox>
        <asp:RegularExpressionValidator runat="server" ControlToValidate="txtMemNo" Display="Dynamic" Text="Please check your membership number" ValidationExpression="\d{9}"></asp:RegularExpressionValidator>
    </td>
  </tr>
  <tr>
    <td><asp:Label ID="lblFirstName" runat="server">First name</asp:Label></td>
    <td><asp:TextBox ID="txtForename" runat="server"></asp:TextBox>
        <asp:RequiredFieldValidator runat="server" ControlToValidate="txtForename" Text="Required"></asp:RequiredFieldValidator>
    </td>
    <td width="110px"><asp:Label ID="lblLastName" runat="server">Last name</asp:Label></td>
    <td><asp:TextBox ID="txtSurname" runat="server"></asp:TextBox>
        <asp:RequiredFieldValidator runat="server" ControlToValidate="txtSurname" Text="Required"></asp:RequiredFieldValidator>
    </td>
  </tr>
  ...
</table>

<script type="text/javascript" language="javascript">
  // perform additional client-side validation in JavaScript
  function ValidateForm()
  {
    // check membership number (via web-service)
    ...
  }
</script>

ASCX 代码隐藏:

public partial class PaperForm : UserControl
{
    // **public properties representing form data**
    public string MemNo { get { return txtMemNo.Text; } set { txtMemNo.Text = value; } }
    public string Forename { get { return txtForename.Text; } set { txtForename.Text = value; } }
    public string Surname { get { return txtSurname.Text; } set { txtSurname.Text = value; } }
    ...

    protected void Page_Load(object sender, EventArgs e)
    {
        // prevent browser caching
        ...
    }
}

ASPX 标记:

<%--register the user control here--%>
<%@ Register TagPrefix="UC" TagName="PaperForm" Src="~/Proposals/PaperForm.ascx" %>

<asp:FormView ID="fvPaper" runat="server" DataKeyNames="PprPropID" DataSourceID="tblPprProp" DefaultMode="Insert" Width="780px">    
  <InsertItemTemplate>

    <%--insert the user control here, **and bind the database fields to its properties**--%>
    <UC:PaperForm ID="pf" runat="server" MemNo='<%# Bind("MemNo") %>' Forename='<%# Bind("Forename") %>' Surname='<%# Bind("Surname") %>' ... />
    ...
    <%--can use the JavaScript ValidateForm() function defined in the ASCX file--%>
    <asp:Button ID="InsertButton" runat="server" CausesValidation="True" CommandName="Insert" Text="Submit" BackColor="#C2D9EC" OnClientClick="return ValidateForm();" />
  </InsertItemTemplate>
</asp:FormView>

<%--define the data-source here rather than in the ASCX file--%>
<asp:SqlDataSource ID="tblPprProp" runat="server" ConflictDetection="CompareAllValues" ConnectionString="<%$ ConnectionStrings:confConnectionString %>" OnInserted="AfterInsertion" 
  InsertCommand="INSERT INTO [tblPprProp] ([MemNo], [Surname], [Forename], ...) VALUES (@MemNo, @Surname, @Forename, ...); SELECT @RowID = SCOPE_IDENTITY()" 
  OldValuesParameterFormatString="original_{0}">
  <InsertParameters>
    <asp:Parameter Name="MemNo" Type="String" />
    <asp:Parameter Name="Surname" Type="String" />
    <asp:Parameter Name="Forename" Type="String" />
    ...
  </InsertParameters>
</asp:SqlDataSource>

ASPX 代码隐藏:

public partial class PaperProposal : Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }

    protected void AfterInsertion(object sender, SqlDataSourceStatusEventArgs e)
    {
        // get Proposal ID
        string rowId = e.Command.Parameters["@RowID"].Value.ToString();
        // get e-mail address from ASCX property
        string address = ((PaperForm)this.fvPaper.FindControl("pf")).Email;
        // send acknowledgement e-mail
        ...
    }
}
于 2012-07-13T18:40:45.553 回答