When I write an html page as an excel speadsheet using the following:
Dim r As HttpResponse = GetResponse()
r.Buffer = True
r.ContentType = "application/vnd.ms-excel"
r.Write(obuilder.ToString)
r.Flush()
I get a nice excel speadsheet from the HTML table structures but the tab (or worksheet name) has a strange label that looks like part of the query string. Is there a way I can name this tab myself?
Also, is there a way to write a page as excel and have multiple worksheets/tabs? I promise I will give stars if someone can answer these.
Dim r As HttpResponse = GetResponse()
r.Buffer = True
r.ContentType = "application/vnd.ms-excel"
r.Write(obuilder.ToString)
r.Flush()
I get a nice excel speadsheet from the HTML table structures but the tab (or worksheet name) has a strange label that looks like part of the query string. Is there a way I can name this tab myself?
Also, is there a way to write a page as excel and have multiple worksheets/tabs? I promise I will give stars if someone can answer these.