11 messaggi dal 20 novembre 2001
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace CSharpAppOnDb
{
/// <summary>
/// Summary description for WebForm1.
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.DataGrid ASLList;
protected System.Web.UI.WebControls.Button Button1;

public WebForm1()
{
Page.Init += new System.EventHandler(Page_Init);
}

private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
Connection();
}

private void Page_Init(object sender, EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
}

#region Web Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.ASLList.SelectedIndexChanged += new System.EventHandler(this.DataGrid1_SelectedIndexChanged);
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Connection()
{
if (Page.IsPostBack == false)
{
//Stringa di Connessione
String strConn ="PROVIDER=SQLOLEDB;DATA SOURCE=DEV03;Initial Catalog=SCA;User ID=sa;Password=";
//Inizializzo l'oggetto Connection
Object objConn = new OleDbConnection(strConn).Open();
String strSQL = "SELECT * FROM AN_AZ_OSP";
//Inizializzo l'oggetto Command
Object objCmd = new OleDbCommand(strSQL, objConn);//.ExecuteReader(CommandBehavior.CloseConnection);
//Creo e popolo il DataReader (Recordset aperto con un cursore foward-only)
//Object objDataReader = new OleDbDataReader();
}
}
private void DataGrid1_SelectedIndexChanged(object sender, System.EventArgs e)
{

}

private void ListBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{

}

private void Button1_Click(object sender, System.EventArgs e)
{
//Connessione al DataBase
//string strConn ="PROVIDER=SQLOLEDB;DATA SOURCE=AIRLIQUIDE;Initial Catalog=SCA;User ID=sa;Password=";
//object ObjConn = new OleDbConnection(strConn).Open();
//string strSQL = "SELECT * FROM AN_AZ_OSP";
//Inizializzo l'oggetto Command
//object ObjCommand = new OleDbCommand(strSQL, ObjConn);
//Leggo i dati e chiudo la connessione
//object ObjDataReader = new OleDbDataReader



}
}
}


ma che firma.!!

ma che firma.!!
221 messaggi dal 03 novembre 2001
Dove di preciso ti dà errore?

Comunque mi pare che tu abbia fatto un po' di confusione con i data types: in C# Object è object, String è string. Poi, perchè scrivi?
Object objCmd = new OleDbCommand(...); ??

dovrebbe essere
OleDbCommand objCmd = new OleDbCommand(...); ??

lo stesso vale in altri casi, quando crei oggetti OleDbConnection e altri

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.