SqlDataSource の例外処理に問題があります。SqlDataSource は現在、ListView で使用されています。コードは正しいように見えますが、エラー メッセージが表示されないようです。間違いを特定できないようです。
コード:
protected void CustomerSQLDataSource_Selected(object sender, SqlDataSourceStatusEventArgs e)
{
if (e.Exception != null)
{
//Show error message
string myStringVariable = "Error";
ScriptManager.RegisterStartupScript(Page, this.GetType(), "myalert", "alert('" + myStringVariable + "');", true);
//Set the exception handled property
e.ExceptionHandled = true;
}
}