Sto impazzendo non riesco a farli "dialogare".

Ho trovato 30.000 esempi sul web ma nulla.

Stringa di conessione sul web config:

codice:
 <add key="ConnectionString" value="Driver={mySQL}; Server=sql.ppp.it; Database=ppp; Uid=ppp; Pwd=ppp;" />
un repeater da popolare così:

codice:
        string ob = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];

        String sql = "Select * from CATEGORIE ORDER BY CATEGORIA ASC";
        OdbcDataAdapter Com = new OdbcDataAdapter(sql, ob);
        DataSet ds = new DataSet();
        Com.Fill(ds);

        RepCat.DataSource = ds.Tables[0];
        RepCat.DataBind();
in fase di compilazione tutto ok, in fase di visualizzazione:

Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load type 'indici'.

Source Error:


Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="indici.aspx.cs" Inherits="indici" %>

peccato che nel mio filce INDICI.ASPX.CS abbia questa bellisima riga di codice:

codice:
public partial class indici : System.Web.UI.Page 
{
Secondo i miei calcoli dovrebbe andare tutto ok, ma a quanto pare no.