Computer Science, asked by rahimakhatun37a, 8 months ago

Kartik has created his English project in Word 2010 how can he save the project in the folder my file created in D drive​

Answers

Answered by Anonymous
7

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);

Answered by joyanayak70
1

Explanation:

tq hlwwwwwwwwwwwwww

Similar questions