Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Cuốn sách này đã cung cấp cho tôi thông tin để nhảy ngay vào việc tạo ra các ứng dụng web với Visual Basic. Nó là một hướng dẫn đào tạo tuyệt vời và đồng thời, nó cung cấp các ví dụ thực tế có thể được tái sử dụng trong nhiều dự án và các ứng dụng. (Nhận xét của một nhà phát triển trên phiên bản trước của ASP.NET murach, được đăng trực tuyến) | 420 Section 4 How to use ADO.NET with web applications The aspx file Figure 12-15 shows the complete aspx listing for this application. In part 1 of this figure you can see the aspx code for the Gridview control. It specifies that the data source is SqlDataSourcel and the primary key for the data is TermsID. The first three columns in the Columns element define the three columns from the data source. But note that the first column isn t displayed because it contains an identity value. Also note that the fourth and fifth columns define the command fields. The CausesValidation property of both these fields is left at False since no validation is performed on the data in the grid. Download from Wow eBook www.wowebook.com Chapter 12 How to use the Gridview control 421 The Default.aspx file Page 1 body fonn id forml runat server div h2 Terms Maintenance h2 asp GridView ID grdTerms runat server AutoGenerateColumns False DataKeyNames TermsID DataSourceID SqlDataSourcel CellPadding 4 ForeColor 11 333333 GridLines None EditRowStyle BackColor 2461BF FooterStyle BackColor 507CDl Font-Bold True ForeColor White Columns asp BoundFỉeld DataFỉeld TermsID Vỉsỉble False asp TemplateField HeaderText Description EdỉtItemTemplate asp TextBox ID txtGridDescription runat server Text 1 Bind Description 1 asp TextBox EditItemTemplate ItemTemplate asp Label lD lblGridDescription runat server Text 1 Bind Description asp Label ItemTemplate HeaderStyle HorizontalAlign Left cltemStyle widths 200px asp TemplateFleld asp BoundField DataField DueDays HeaderText Due Days cltemStyle HorizontalAlign Right Widths117 5px11 cHeaderStyle HorizontalAlign Right asp BoundFỉeld asp CommandField ButtonType Button ShowEdỉtButton True CausesValỉdatỉon False asp CommandField ButtonType Button ShowDeleteButton True CausesValỉdatỉon False Columns HeaderStyle BackColor 507CDl Font-Bold True ForeColor White A1ternatlngRowStyle BackColor White PagerStyle BackColor 2461BF ForeColor White HorỉzontalAlỉgn Center .