Add data to datagrid (VB.net) : DataGrid « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Asp Control » DataGrid 
Add data to datagrid (VB.net)

<%@ Page Language=VB Debug=true %>
<%@ Import Namespace="System.Data" %>
<script runat=server>
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If Not IsPostBack Then
        Dim MyDT As New DataTable
        Dim MyRow As DataRow
        MyDT.Columns.Add(New DataColumn("EmployeeID", _
            GetType(Int32)))
        MyDT.Columns.Add(New DataColumn("EmployeeFirstName", _
            GetType(String)))
        MyDT.Columns.Add(New DataColumn("EmployeeLastName", _
            GetType(String)))
        MyDT.Columns.Add(New DataColumn("BirthDate", _
            GetType(Date)))
        MyDT.Columns.Add(New DataColumn("Salary", _
            GetType(Single)))
        MyRow = MyDT.NewRow()
        MyRow(01
        MyRow(1"A"
        MyRow(2"M"
        MyRow(3"5/15/65"
        MyRow(4"40000"
        MyDT.Rows.Add(MyRow)
        MyRow = MyDT.NewRow()
        MyRow(02
        MyRow(1"J"
        MyRow(2"F"
        MyRow(3"7/22/75"
        MyRow(4"73050"
        MyDT.Rows.Add(MyRow)
        MyRow = MyDT.NewRow()
        MyRow(03
        MyRow(1"L"
        MyRow(2"S"
        MyRow(3"12/8/71"
        MyRow(4"62500"
        MyDT.Rows.Add(MyRow)
        MyRow = MyDT.NewRow()
        MyRow(04
        MyRow(1"S"
        MyRow(2"M"
        MyRow(3"3/15/54"
        MyRow(4"43222"
        MyDT.Rows.Add(MyRow)
        MyRow = MyDT.NewRow()
        MyRow(05
        MyRow(1"J"
        MyRow(2"P"
        MyRow(3"3/12/47"
        MyRow(4"52825"
        MyDT.Rows.Add(MyRow)

        dg1.DataSource = MyDT
        dg1.DataBind()
    End If
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>DataGrid Control Sample Page</TITLE>
</HEAD>
<BODY >
<form runat="server">
<Font Face="Tahoma">
<ASP:DataGrid 
    id="dg1" 
    runat="server"
/>

</Font>
</Form>
</BODY>
</HTML>
           
       
Related examples in the same category
1. BorderColor, CellPadding, CellSpacing for ASP:DataGrid (VB.net)
2. Font-Name, Font-Size for ASP:DataGrid (VB.net)
3. ForeColor, BackColor for ASP:DataGrid (VB.net)
4. AlternatingItemStyle-ForeColor, AlternatingItemStyle-BackColor for ASP:DataGrid (VB.net)
5. AlternatingItemStyle-Font-Name, AlternatingItemStyle-Font-Italic (VB.net)
6. HeaderStyle-BackColor, HeaderStyle-Font-Bold (VB.net)
7. Add button to asp:DataGrid (VB.net)
8. Add hyperlink a asp:datagrid (VB.net)
9. Add hyperlink to asp:datagrid table column (VB.net)
10. Add navigator to asp:datagrid (VB.net)
11. Set item style, header style and alternating item style for the asp datagrid (C#)
w___w___w___.__j__a_v__a2___s___._c_o__m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.