protected void FetchFloat()
        {
            FloatAmountDAL theFloat = new FloatAmountDAL {
                ConnectionString = ConfigurationManager.ConnectionStrings["MySQLTest"].ToString()
            };

            GVFloat.DataSource = theFloat.GetFloat(null);
            GVFloat.DataBind();
        }