I have a html table which is populated dynamically. I need to put 4 buttons below it which enables exporting the table structure and data to Excel, Word, PDF and CSV.

What is the best/easiest approach to implement this?

I don't think relying on the client installed application is a great idea so I am thinking to provide this feature using backend code (c#).

Thanks.

link|improve this question

29% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I used this method:

private void PrepareResponseHeader()
{
    HttpResponse.Clear();
    HttpResponse.Buffer = true;
    HttpResponse.AddHeader("content-disposition",
                           String.Format("attachment;filename={0}.{1}", this.FileName, this.GetFileExtension()));
    HttpResponse.Charset = "";
    HttpResponse.ContentType = this.GetContentType();
}

and this:

protected void WriteAndEnd(string value)
{
    HttpResponse.Output.Write(value);
    HttpResponse.Flush();
    HttpResponse.End();
}

PrepareResponseHeader();
WriteAndEnd(htmlData);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.