单项选择题
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
You create a Web page to display photos and captions. The caption of each photo in the database can be modified by using the application. You write the following code fragment.
| English | Chinese | Japan | Korean | - 123 - Test Information Co., Ltd. All rights reserved. <asp:FormView DataSourceID="ObjectDataSource1" DataKeyNames="PhotoID" runat="server">
<EditItemTemplate>
<asp:TextBox Text=’<%# Bind("Caption") %>’ runat="server"/>
<asp:Button Text="Update" CommandName="Update" runat="server"/>
<asp:Button Text="Cancel" CommandName="Cancel" runat="server"/>
</EditItemTemplate> <ItemTemplate>
<asp:Label Text=’<%# Eval("Caption") %>’ runat="server" />
<asp:Button Text="Edit" CommandName="Edit" runat="server"/>
</ItemTemplate>
</asp:FormView>
When you access the Web page, the application throws an error.
You need to ensure that the application successfully updates each caption and stores it in the database.
What should you do? ()
A.Add the ID attribute to the Label control.
B.Add the ID attribute to the TextBox control.
C.Use the Bind function for the Label control instead of the Eval function.
D.Use the Eval function for the TextBox control instead of the Bind function.
相关考题
-
单项选择题
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. The application contains a DataSourceControl named CategoriesDataSource that is bound to a Microsoft SQL Server 2005 table. The CategoryName column is the primary key of the table. You write the following code fragment in a FormView control. (Line numbers are included for reference only.) 01 <tr> 02 <td align="right"><b>Category:</b></td> 03 <td><asp:DropDownList ID="InsertCategoryDropDownList" 04 05 DataSourceID="CategoriesDataSource" 06 DataTextField="CategoryName" 07 DataValueField="CategoryID" 08 RunAt="Server" /> 09 </td> 10 </tr> You need to ensure that the changes made to the CategoryID field can be written to the database. Which code fragment should you insert at line 04?()
A.A
B.B
C.C
D.D -
单项选择题
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. The application contains a DataSourceControl named CategoriesDataSource that is bound to a Microsoft SQL Server 2005 table. The CategoryName column is the primary key of the table. You write the following code fragment in a FormView control. (Line numbers are included for reference only.) You need to ensure that the changes made to the CategoryID field can be written to the database. Which code fragment should you insert at line 04?()
A.A
B.B
C.C
D.D -
单项选择题
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a FormView control to access the results of a query. The query contains the following fields: ¡;¤EmployeID ¡;¤FirstNam ¡;¤LastNam The user must be able to view and update the FirstName field. | English | Chinese | Japan | Korean | - 121 - Test Information Co., Ltd. All rights reserved. You need to define the control definition for the FirstName field in the FormView control. Which code fragment should you use?()
A.A
B.B
C.C
D.D
