I am new to ASP.NET.
I have done the program illustrated in 2ND cHAPTER Beginning ASP.NET WITH VISUAL BASIC.NET.
The error was this Could not find installable ISAM.
the code is this
<%@ Import Namespace="System.Data" %>
<%@ Page Language="
vB" Debug="true" %>
<%@ Import Namespace="System.Data.OleDb" %>
<script language="
vb" runat="server">
Sub Page_Load(Sender as Object,E as Eventargs)
Dim objConnection as OleDbConnection
Dim objCommand as OleDbDataAdapter
Dim strConnect as String
Dim strCommand as String
Dim DataSet1 as New DataSet
strConnect="Provider=Microsoft.Jet.OLEDB.4.0;"
strConnect +="DataSource=D:\Jaju\db1.mdb;"
strConnect +="Jet OLEDB:Database Persist Security Info=False"
strCommand="Select Name,Relation from house"
objConnection=New OleDbConnection(strConnect)
objCommand=New OleDbDataAdapter(strCommand, objConnection)
objCommand.Fill(DataSet1,"house")
DataGrid1.DataSource=DataSet1.Tables("House").Defa ultView
DataGrid1.DataBind()
End Sub
</script>
<html>
<head>
<title>Data Grid Control Example</title>
</head>
<body>
<asp:DataGrid id="DataGrid1" runat="server" />
</body>
</html>