Computer Science, asked by mehak2001, 1 year ago

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 Saumi11
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.

mehak2001: Thnx bae
Saumi11: Welcome
Answered by Anonymous
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