TTFB -- Time To First Byte
Every Question..What does it mean? Why is this? How it works?
Microsoft .Net (pronounced dot (.) net) may be a package element that runs on the Windows software package.
.Net provides tools and libraries that change developers to form Windows package a lot of quicker and easier.
Microsoft describes it as:".Net is that the Microsoft internet Service strategy to attach data, people,
system and devices through software".I'm Choulla Naresh..!
Thursday, December 17, 2015
Merge Datatable or DataSet
con.Open();
SqlDataAdapter adp = new SqlDataAdapter("select * from Reg", con);
DataSet ds1 = new DataSet();
adp.Fill(ds1);
adp = new SqlDataAdapter("select * from sale", con);
DataSet ds2 = new DataSet();
adp.Fill(ds2);
ds1.Merge(ds2,true);
if (ds1.Tables[0].Rows.Count > 0 && ds2.Tables[0].Rows.Count>0)
{
GridView1.DataSource = ds1;
GridView1.DataBind();
}
con.Close();
Subscribe to:
Posts (Atom)