Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Việc kiểm soát DetailsView trong Ví dụ 12,14 bao gồm một tài sản AutoGenerateInsertButton có giá trị True. tài sản này sẽ tự động tạo ra các giao diện người dùng để chèn một kỷ lục mới. Sau khi bạn mở trang trong Ví dụ 12,14, bạn có thể nhấp vào nút New để hiển thị một hình thức để chèn một kỷ lục mới. | 594 CHAPTER 12 Using the DetailsView and FormView Controls The DetailsView control in Listing 12.14 includes an AutoGeneratelnsertButton property that has the value True. This property automatically generates the user interface for inserting a new record. After you open the page in Listing 12.14 you can click the New button to display a form for inserting a new record. When you click the Insert button the SQL command represented by the SqlDataSource control s Insertcommand property is executed. If you want the DetailsView control to display an insert form by default you can assign the value Insert to the DetailsView control s DefaultMode property. This approach is illustrated by the page in Listing 12.15 see Figure 12.10 . FIGURE 12.10 Inserting a record with the DetailsView control. LISTING 12.15 ShowInsertMode.aspx @ Page Language C DOCTYPE html PUBLIC - W3C DTD XHTML 1.1 EN http www.w3.org TR xhtml11 DTD xhtml11.dtd html xmlns http www.w3.org 1999 xhtml head id Head1 runat server style type text css html background-color silver From the Library of Wow eBook Using the DetailsView Control 595 font 14px Arial Sans-Serif td th padding 10px divDisplay border solid 1px black width 40Opx padding 15px background-color eeeeee divInsert display none border solid 1px black width 400px position absolute top 30px left 100px padding 10px background-color white 12 style script type text javascript function showInsert var divInsert document.getElementByld divInsert divInsert.style.display block script title Show Insert Mode title head body form id form1 runat server div id divDisplay asp GridView id grdMovies DataSourceID srcMovies Runat server br a href JavaScript showInsert Insert Movie a div From the Library of Wow eBook 596 CHAPTER 12 Using the DetailsView and FormView Controls div id divInsert h1 Insert Movie h1 asp DetailsView id dtlMovies DataSourceID srcMovies AutoGenerateInsertButton true AutoGenerateRows false DefaultMode Insert Runat server Fields asp BoundField .