public void BindData()
{
conn.Close();
cmd = new SqlCommand(“select * from tbl_test”, conn);
cmd.CommandType = CommandType.Text;
da = new SqlDataAdapter(cmd);
ds = new DataSet();
da.Fill(ds, “tbl_test”);
conn.Open();
cmd.ExecuteReader();
dgcategory.DataSource = ds;
conn.Close();
try
{
dgcategory.DataBind();
}
catch
{
dgcategory.CurrentPageIndex = 0;
}
}
-
Creating data driven application is one of the most commonly done task in our day today application development. In these applications, ...
-
The following article discusses the WPF command binding feature with relation to Mouse clicks. One of WPF powerful features is the bindin...
-
In this article we will look at the basics of Angular.Js. This is the first part of an article series. The main objective of this series i...