xxx of yyy characters
Join Group
Google Translation: Off

When Google Translation is on, topics and messages in this group will be machine-translated to your language by Google.

Messages


Topic: A DataGrid Application
<%@ Import Namespace="System.Data.OleDb" %>
<html>
<Script ID="Script2009" Language="C#" RunAt="Server">
private void Page_Load(object sender, System.EventArgs e)
{
OleDbConnection Connection2009;
Connection2009=new OleDbConnection("Provider=Microsoft.Jet.OleDb.4.0; Data Source="
+Server.MapPath("WebApplication_Database/Database2009.mdb"));
Connection2009.Open();
OleDbCommand Command2009;
Command2009=new OleDbCommand("SELECT * FROM Table2009", Connection2009);
OleDbDataReader DataReader2009;
DataReader2009=Command2009.ExecuteReader();
DataGrid2009.DataSource=DataReader2009;
DataGrid2009.DataBind();
Connection2009.Close();
}
</Script>
<head>
<title>DataGrid2009 Application</title>
</head>
<body>
<Form ID="FORM2009" RunAt="Server">
<center>
<ASP:DataGrid ID="DataGrid2009" RunAt="Server" AutoGenerateColumns="True">
</ASP:DataGrid>
</center>
</Form>
</body>
</html>

Preview : webapp2009_default.aspx
Download:webapp2009_project.rar
Nov 19, 2008
1:29 PM

Posted by Janet 

Note: To add an image or link in your message, use <img src="http://www.hi5.com/example.jpg"> or <a href="http://www.hi5.com/example.html">Text </a>

 
 

  

Title
body