You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
517 B

using System.Data.OleDb;
using System;
using System.Text;
public class cs_database : System.Web.UI.Page
{
protected OboutInc.Show.Show Show1;
protected void Page_Load(object sender, EventArgs e) {
OleDbConnection oleDBConnetion = new OleDbConnection();
oleDBConnetion.ConnectionString =
"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + Server.MapPath("../App_Data/Products.mdb") + "; User Id=; Password=";
// gets the datasource for the emails list
OleDbCommand oleDBCommand = new OleDbCommand();