DataGrid
Controls Suite 4.5 |
 | Overview |
 | Features |
 | Reference Book |
 | Live Demos |
|  | Populating with Data |
|  | Columns |
|  | Rows |
|  | Appearance & Layout |
|  | Behavior |
|  | Bottom Bar |
|  | Application scenarios |
| |  | Master/Detail Grids |
| |  | CheckBoxes |
| |  | DropDowns |
| |  | Images |
| |  | Update Panel |
|
Most of the time, all you need to do is to add main dll library to your web application and write two lines of code on the WebForm:
- Copy the APNSoftControls.dll assembly into the Bin directory of your web application.
- Add the following line of code to the top of your page:
<%@ Register TagPrefix="APNSoft" Namespace="APNSoft.WebControls" Assembly="APNSoftControls" %>
- Add the following line of code anywhere within your page to embed the DataGrid:
<APNSoft:APNSoftDataGrid id="myDataGrid" runat="server" />
For more information about adding controls to an ASP.NET Web Page, see this page.
|