Posts
Showing posts from 2020
ASP.NET database Connectivity with ms Access
- Get link
- X
- Other Apps
ASP.NET database Connectivity with ms Access Database name – cust using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.OleDb; public partial class _Default : System.Web.UI. Page { public OleDbConnection con; public OleDbDataAdapter dad; public OleDbCommand com; public DataSet ds; //Code for Search Data protected void Button3_Click( object sender, EventArgs e) { TextBox2.Text = "" ; TextBox3.Text = "" ; TextBox4.Text = "" ; con= new OleDbConnection ( "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Server.MapPath( "~/App_Data/cu...