M
mjohnson
Is it possible to load an HTML page into a separate worksheet tab and
have it renendered as HTML?
I have to create a multi-tabbed "spec file" for our department. My
thought was that I could create a set of webservices that returned the
appropriate worksheet content using the LoadText() function from the
Worksheet (not the Spreadsheet). This works, however, the raw HTML is
displayed instead of getting formated. Is it possible to get OWC to
render the HTML?
I can get the formatting to work if I use:
Response.ContentType = "application/vnd.ms-excel"
but then I lose the ability to create a tabbed spreadsheet. Am I
trying to ask too much from the OWC?
Here's what I'm doing:
function CreateDrawing( aSheet )
{
aSheet.Range("A1").LoadText("http://fiberweb/projects/racklayout.asp?ProjID="+ProjID);
}
I got back the correct data in the tab but I just can't get it to
format.
thanks for your help!
have it renendered as HTML?
I have to create a multi-tabbed "spec file" for our department. My
thought was that I could create a set of webservices that returned the
appropriate worksheet content using the LoadText() function from the
Worksheet (not the Spreadsheet). This works, however, the raw HTML is
displayed instead of getting formated. Is it possible to get OWC to
render the HTML?
I can get the formatting to work if I use:
Response.ContentType = "application/vnd.ms-excel"
but then I lose the ability to create a tabbed spreadsheet. Am I
trying to ask too much from the OWC?
Here's what I'm doing:
function CreateDrawing( aSheet )
{
aSheet.Range("A1").LoadText("http://fiberweb/projects/racklayout.asp?ProjID="+ProjID);
}
I got back the correct data in the tab but I just can't get it to
format.
thanks for your help!