Hi,
when we use iframe src=“a servlet: make response.getOutPutStream =this converted main html FileStream” other files eg:sheet001.htm in this main file ,we also supply a servlet to get the file stream,
It is ok in most browser but IE9,
we found in you source code ,it has
Can you tell me a method to view converted excel html files in web application ?
we cann’t copy this file to webapplication,so the method like http://somhost.com/mainfile.html wouldn’t work for me! It is only a file,we must use FileInputStream to load it!
landray.com.cn:
when we use iframe src="a servlet: make response.getOutPutStream =this converted main html FileStream" other files eg:sheet001.htm in this main file ,we also supply a servlet to get the file stream,
It is ok in most browser but IE9,
we found in you source code ,it has
landray.com.cn:
Can you tell me a method to view converted excel html files in web application ?
we cann't copy this file to webapplication,so the method like http://somhost.com/mainfile.html wouldn't work for me! It is only a file,we must use FileInputStream to load it!
I know how it happens in IE9
here your main.html is like this
this is commented,it doesn’t matter,can you remove it??
The important is like below:
<![if !supportTabStrip]>
…
<![endif]>
can you give a parameter to remove it or donn’t generate it.When I remove this in my converted files.The screenshot in last thread is not happen.
and also like below is not needed ,it is a comment body.
Hi,
The original html file is like below:
<!doctype html public “-//w3c//dtd xhtml 1.0 transitional//en” “http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd”>
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns=“http://www.w3.org/TR/REC-html40”>
<![if !supportTabStrip]>
<![endif]>
This page uses frames, but your browser doesn’t support them.
If like above we will found screenshot like befor in IE9
but we only need like below ,it will donn’t found this problem.
<!doctype html public “-//w3c//dtd xhtml 1.0 transitional//en” “http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd”>
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns=“http://www.w3.org/TR/REC-html40”>
This page uses frames, but your browser doesn’t support them.
Hi,
Can you give me a boolean property to decide to generate the javascript or not??
you donn’t need doubt,it works well with out this javascript.
this javascript only works when didn’t support TabStrip…like this <![if !supportTabStrip]>
so we only need a boolean properties in saveoption to decide to generate or not.
Hi,
Hi again,
Hi,
Thanks for using Aspose.Cells for Java.
Please download and try this fix: Aspose.Cells for Java v8.5.2.3 and let us know your feedback.
About CELLSJAVA-41458, we have added HtmlSaveOptions.ExportFrameScriptsAndProperties property.
Indicating whether exporting frame scripts and document properties. The default value is true. If you want to import the html or mht file to excel, please keep the default value.
For example in Java:
Java
Workbook wb = new Workbook(“a.xlsx”);
HtmlSaveOptions options = new HtmlSaveOptions();
options.setExportFrameScriptsAndProperties(false);
wb.save(“out_java.html”, options);
The issues you have found earlier (filed as CELLSJAVA-41458) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.