17 lines
577 B
Plaintext
17 lines
577 B
Plaintext
<asp:FormView runat="server" ID="editCustomer">
|
|
<EditItemTemplate>
|
|
<div>
|
|
<asp:Label runat="server" AssociatedControlID="firstName">
|
|
First Name:</asp:Label>
|
|
<asp:TextBox ID="firstName" runat="server"
|
|
Text='<%#BindItem.FirstName %>' />
|
|
</div>
|
|
<div>
|
|
<asp:Label runat="server" AssociatedControlID="lastName">
|
|
First Name:</asp:Label>
|
|
<asp:TextBox ID="lastName" runat="server"
|
|
Text='<%#BindItem.LastName %>' />
|
|
</div>
|
|
<asp:Button runat="server" CommandName="Update"/>
|
|
</EditItemTemplate>
|
|
</asp:FormView> |