tailieunhanh - ASP.NET 4 Unleased - p 69

Using the Repeater and DataList Controls .edit { background-color:yellow; } a { color:blue; } Edit DataList Directed by: In Theaters: | | 654 CHAPTER 13 Using the Repeater and DataList Controls .edit background-color yellow a color blue style title Edit DataList title head body form id form1 runat server div asp DataList id dlstMovies DataSourceID srcMovies DataKeyField Id GridLines None OnEditCommand dlstMovies_EditCommand OnCancelCommand dlstMovies_CancelCommand OnUpdateCommand dlstMovies_UpdateCommand OnDeleteCommand dlstMovies_DeleteCommand CssClass movies EditItemStyle-CssClass edit Runat server ItemTemplate h1 Eval Title h1 Directed by Eval Director br In Theaters Eval InTheaters br br asp LinkButton id lnkEdit CommandName Edit Text Edit Runat server nbsp nbsp asp LinkButton id lnkDelete CommandName Delete Text Delete OnClientClick return confirm Are you sure From the Library of Wow eBook Using the DataList Control 655 Runat server ItemTemplate EditItemTemplate asp Label id lblTitle Text Title AssociatedControlID txtTitle Runat server br asp TextBox id txtTitle Text Eval Title Runat server br br asp Label id lblDirector Text Director AssociatedControlID txtDirector Runat server br asp TextBox id txtDirector Text Eval Director Runat server br br asp CheckBox id chkInTheaters Text In Theaters Checked Eval InTheaters Runat server br br asp LinkButton id lnkUpdate CommandName Update Text Update Runat server nbsp nbsp asp LinkButton id lnkCancel CommandName Cancel Text Cancel Runat server EditItemTemplate asp DataList asp SqlDataSource 13 From the Library of Wow eBook 656 CHAPTER 13 Using the Repeater and DataList Controls id srcMovies ConnectionString ConnectionStrings Movies SelectCommand SELECT Id Title Director InTheaters FROM Movies UpdateCommand UPDATE Movies SET Title @Title Director @Director InTheaters @InTheaters WHERE Id @Id DeleteCommand DELETE Movies WHERE Id @Id Runat server UpdateParameters asp Parameter Name Id asp Parameter Name Title asp Parameter Name Director asp Parameter Name InTheaters UpdateParameters DeleteParameters asp Parameter Name Id DeleteParameters asp SqlDataSource .