-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDefault.aspx
More file actions
21 lines (20 loc) · 876 Bytes
/
Default.aspx
File metadata and controls
21 lines (20 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ Page Language="vb" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="Grid_Bind_RunTimeBinding" %>
<%@ Register Assembly="DevExpress.Web.v21.2" Namespace="DevExpress.Web"
TagPrefix="dxe" %>
<%@ Register Assembly="DevExpress.Web.v21.2" Namespace="DevExpress.Web"
TagPrefix="dxwgv" %>
<%@ Register Assembly="DevExpress.Web.v21.2" Namespace="DevExpress.Web"
TagPrefix="dxwp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Bind a grid to a DataTable object</title>
</head>
<body>
<form id="form1" runat="server">
<dxwgv:ASPxGridView ID="grid" ClientInstanceName="grid" runat="server" Width="300px"
AutoGenerateColumns="False" OnDataBinding="grid_DataBinding">
</dxwgv:ASPxGridView>
</form>
</body>
</html>