Click here to Skip to main content
15,891,253 members

Comments by Rajendra Patel Jat (Top 5 by date)

Rajendra Patel Jat 5-Apr-12 2:52am View    
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Data Source=6DEGREESIT37;Initial Catalog=lpc4;Integrated Security=True");
string ss = "select * from blog";
SqlDataAdapter da = new SqlDataAdapter(ss,con);
DataTable dt = new DataTable();
da.Fill(dt);
string attachment = "attachment; filename=Employee.xls";
Response.ClearContent();
Response.AddHeader("content-disposition", attachment);
Response.ContentType = "application/vnd.ms-excel";
string tab = "";
foreach (DataColumn dc in dt.Columns)
{
Response.Write(tab + dc.ColumnName);
tab = "\t";
}
Response.Write("\n");

int i;
foreach (DataRow dr in dt.Rows)
{
tab = "";
for (i = 0; i < dt.Columns.Count; i++)
{
Response.Write(tab + dr[i].ToString());
tab = "\t";
}
Response.Write("\n");
}
Response.End();

}
Rajendra Patel Jat 13-Feb-12 2:24am View    
nice and problem solvable thanks
Rajendra Patel Jat 10-Feb-12 8:46am View    
any body help me please i have one task my application whenever user login account then signout after user login previous login date display how please help me
Rajendra Patel Jat 10-Feb-12 8:44am View    
hi
Rajendra Patel Jat 9-Feb-12 8:17am View    
nice