Hope you find an answer to this, because this has been one of the things which
have prevented my company from switching to OO. We give users access to a
database via web server and currently the most efficient way to produce this
data to users is by using a script and they can save the subsequent page as an
excel file.
Following is the javascript function which acivates the creation of the new
page.
function ExcelOut (strsql)
{ alert(strsql);
day = new Date();
id = day.getTime();
sURL="putData.asp?&gg=&strsql="+strsql+"&n=1&id="+id;
//alert(strsql);
eval("page" + id + " = window.open(sURL, '" + id + "',
'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1');");
}
//the n=1 in the URL tells it to run this code
if nn=1 then
Response.ContentType = "application/vnd.ms-excel"
scrColor="White"
end if
If your using MS Excel this works fine. You can save the file and then open it
with OO spreadsheet and it is okay. But going directly from web page to OO
doesn't seem to work.
> I have an html document divided into rows and columns. How can I load it
> into
> OOO.org as a spreadsheet for reworking?
>
> Thanks
>
> dj tuchler
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]