Kartik has created his English project in word 2013. How can he save the project in the folder 'My Files' created in D drive❓
Answers
Answered by
8
Ms Office Button
Save as
Browse through files and find the folder " My Files" in the D drive
Click Save
Kartik's work will be saved.
Save as
Browse through files and find the folder " My Files" in the D drive
Click Save
Kartik's work will be saved.
mehak2001:
Thnx bae
Answered by
4
Answer:
protected void ExportToExcel(object sender, EventArgs e)
{
gvDetails.AllowPaging = false;
this.bind();
Response.ClearContent();
Response.AddHeader("content-disposition", "attachment; filename=Name.xls");
Response.ContentType = "application/excel";
System.IO.StringWriter sw = new System.IO.StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gvDetails.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();
}
Similar questions
Social Sciences,
7 months ago
Physics,
1 year ago
Math,
1 year ago
Chemistry,
1 year ago
English,
1 year ago