private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
if(Session["strSql"]==null)
{
FResult.Text="对不起,没有你所要查询的数据!";
}
else
{
string sql=Session["strSql"].ToString();
SqlDataReader objDr=objXSqlClient.CreateDataReader(sql);
bool D=objDr.Read();
if(D)
{
FResult.Text=Convert.ToString(objDr["Y1"]);
objDr.Close();
}
else{FResult.Text="对不起,没有你所要查询的数据!";}

}
}
}
-------------------------------------------------
Y1出现异常,在数据库中,Y1值为20451185.387825810806461765438