ASP.NET 2.0 中實現模板中的資料繫結系列(2)

來源:互聯網
上載者:User
雙向資料繫結
  
    FormView可以通過相關的資料來源控制項支援自動地更新、插入和刪除操作(與DetailsView類似)。如果要定義編輯或插入的UI,那麼除了定義資料項目模板(ItemTemplate)之外,你還要定義EditItemTemplate或InsertItemTemplate模板。在這個模板中,你可以把輸入控制項(例如文字框、檢查框或下拉式清單)綁定到資料來源的欄位。這些模板中的資料繫結使用了"雙向"資料繫結文法,允許FormView從模板的輸入控制項中提取值並傳遞給資料來源。這些資料繫結操作用新的Bind(fieldname)文法代替了Eval。
  
    請注意:使用Bind文法的資料繫結控制項必須設定好ID屬性。
  
    GridView或DetailsView執行更新或插入操作的時候(這些控制項的Columns或Fields都會定義BoundFields,綁定欄位),GridView或 DetailsView負責建立編輯或插入模式中的輸入UI,因此它能夠自動地提取這些值並把它們傳遞給資料來源。由於模板包含了任意的使用者自訂UI控制項,雙向資料繫結文法就是必要的,以確保樣板化控制項(例如FormView)在應對更新、插入或刪除操作的時候,知道應該從模板中提取那些控制項的值。你仍然可以在EditItemTemplate中使用Eval語句進行資料繫結,來給資料來源傳遞值。請注意,FormView與DetailsView和GridView一樣支援DataKeyNames屬性,它儲存了傳遞給更新/刪除操作的主鍵字典的原始值,即使這些值沒有顯示出來。
  
    FormView支援DefaultMode屬性,它可以指定預設顯示的模板,但在預設情況下FormView處於唯讀模式並顯示ItemTemplate模板。為了把UI從唯讀模式轉換為編輯或插入模式,你可以給模板添加一個按鈕控制項,把該按鈕的CommandName屬性設定為Edit或New。在EditItemTemplate模板中,你可以增加按鈕,把CommandName設定為Update或Cancel以提交或終止更新操作。類似的,你可以增加按鈕,把CommandName設定為Insert或Cancel來提交或終止插入操作。
  
    下面的例子示範了定義了ItemTemplate和EditItemTemplate模板的FormView。其中的ItemTemplate模板包含了使用Eval(雙向)綁定的控制項,而EditItemTemplate模板則包含了使用Bind語句進行雙向繫結的文字框控制項。主鍵欄位(PhotoID)是使用DataKeyNames屬性存放在viewstate中的。該FormView包含了用於在模板之間進行切換的按鈕。
  
  <ASP:FormView ID="FormView1" runat="server" DataSourceID="ObjectDataSource1" DataKeyNames="PhotoID">
  <EditItemTemplate>
   <b>Enter a New Caption:</b>
   <asp:TextBox Text='<%# Bind("Caption") %>' runat="server" ID="CaptionTextBox" /> <asp:Button ID="Button1" runat="server" Text="Update" CommandName="Update" />
   <asp:Button ID="Button2" runat="server" Text="Cancel" CommandName="Cancel" />
  </EditItemTemplate>
  <ItemTemplate>
   <asp:Label ID="CaptionLabel" runat="server" Text='<%# Eval("Caption") %>' Font-Size="32pt" /><br />
   <asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("FileName", "images/{0}") %>' /> <br />
   <asp:Button ID="Button3" runat="server" Text="Edit Caption..." CommandName="Edit" /> <asp:HyPerlink ID="HyperLink1" Text="Back to Album" NavigateUrl='<%# Eval("AlbumID", "PhotosDataList.aspx?ID={0}") %>' runat="server" />
  </ItemTemplate>
  </asp:FormView>
  <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" TypeName="DataComponentTableAdapters.PhotosTableAdapter" SelectMethod="GetPhoto" UpdateMethod="UpdateCaption" OldValuesParameterFormatString="original_{0}">
   <UpdateParameters>
    <asp:Parameter Name="Caption" />
    <asp:Parameter Name="Original_PhotoID" />
   </UpdateParameters>
  <SelectParameters>
  <asp:QueryStringParameter Name="PhotoID" DefaultValue="9" QueryStringField="ID" />
  </SelectParameters>
  </asp:ObjectDataSource>
  
    GridView和DetailsView還支援模板化UI,它是通過給Columns或Fields集合增加TemplateField來實現的。TemplateField支援使用ItemTemplate、EditItemTemplate和InsertItemTemplate(DetailsView才有)為控制項的不同顯示模式中的欄位指定UI。與上面的FormView樣本類似,EditItemTemplate或InsertItemTemplate中的雙向資料繫結也允許GridView或DetailsView從這些模板的控制項中提取值。TemplateField最常見的用途是給EditItemTemplate增加驗證器控制項,用於公開地驗證GridView或DetailsView操作。下面的例子示範了這種技術。
  
  
  
  ……
  <asp:GridView ID="GridView1" runat="server" DataSourceID="ObjectDataSource1" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" DataKeyNames="AlbumID">
   <Columns>
    <asp:CommandField ShowEditButton="True" />
    <asp:BoundField ReadOnly="True" HeaderText="AlbumID" DataField="AlbumID" SortExpression="AlbumID" />
    <asp:TemplateField HeaderText="AlbumName" SortExpression="AlbumName" ItemStyle-Wrap="false">
     <ItemTemplate>
      <asp:Label ID="Label1" runat="server" Text='<%# Eval("AlbumName") %>'></asp:Label>
     </ItemTemplate>
     <EditItemTemplate>
      <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("AlbumName") %>'></asp:TextBox>
      <asp:RequiredFieldValidator ControlToValidate="TextBox1" ErrorMessage="AlbumName cannot be empty" ID="RequiredFieldValidator1" Display="Dynamic" runat="server">*</asp:RequiredFieldValidator>
     </EditItemTemplate>
    </asp:TemplateField>
    ……
    </asp:GridView><br />
    <asp:ValidationSummary ID="ValidationSummary1" runat="server" />
    <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" ConvertNullToDBNull="true"
  TypeName="DataComponentTableAdapters.AlbumsTableAdapter" SelectMethod="GetAlbumsByOwner" UpdateMethod="Update" OldValuesParameterFormatString="original_{0}">
    ……
  </asp:ObjectDataSource>
  
    TemplateField的另外一種用途是定製給GridView或DetailsView列/欄位輸入值的控制項。例如,你可以在TemplateField的EditItemTemplate中放置一個DropDownList,允許使用者從預定義的值列表中選擇。下面的例子示範了這種技術。請注意,樣本中的下拉式清單綁定到了自己的資料來源控制項,以動態地擷取列表值。
  
  <asp:TemplateField HeaderText="Owner" SortExpression="Owner">
   <ItemTemplate>
    <asp:Label ID="Label2" runat="server" Text='<%# Eval("Owner") %>'></asp:Label>
   </ItemTemplate>
   <EditItemTemplate>
    <asp:DropDownList DataSourceID="ObjectDataSource2" DataTextField="Owner" DataValueField="Owner" ID="DropDownList2" runat="server" SelectedValue='<%# Bind("Owner") %>'>
    </asp:DropDownList>
   </EditItemTemplate>
   <ItemStyle Wrap="False" />
  </asp:TemplateField>  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.