[supersaibal]<%@ Import Namespace="ByteFX.Data" %>
<%@ Import Namespace="ByteFX.Data.MySqlClient" %>
<%@ Import Namespace="System.Data" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css" media="screen">
<!--
@import "stile.css";
-->
</style>
<link rel="stylesheet" href="stile/stile.css" type="text/css" media="screen" />
</head>
<body>
<script language="c#" runat="server">

void Page_Load() {
DataSet Ds;
string myConnectionString = "Database=db_name;Data Source=localhost;User Id=root;Password=passwod";
MySqlConnection myConnection = new MySqlConnection(myConnectionString);
string myQuery = "SELECT * FROM testi WHERE target=0";
MySqlDataAdapter adapter = new MySqlDataAdapter();
adapter.SelectCommand = new MySqlCommand(myQuery, myConnection);
Ds = new DataSet();
adapter.Fill(Ds);
welcome.Text = Ds.Tables["testi"].Rows[0]["testo"].ToString();
}
</script>

<asp:Label id="welcome" style="border:1px #000000 solid; font: 11px verdana,tahoma,sans-serif; padding: 5px; width: 400px; align: justify;" runat="server" />[/supersaibal]

Perchè questo codice dovrebbe generare errori?