- ·上一篇:如何把word表格中颜色,表格,颜色
- ·下一篇:word内页行间距如何弄,行间,如何弄,内页
word如何变成html页面,页面
1.怎么把Word转换为网页html格式
可以office word(或wps文字)通过“另存为”飞方式来转化格式。
比如现在有一个word格式,我在wps里打开。
然后依次从上到下点击下面的按钮。
最后,下拉格式框,选择要保存的格式,比如html格式,即可。
office word软件操作同样如此。
2.怎样把word转换成网页,直接另存为html不太好,有无其他方法
百度文库采用flash来生成那样的效果的。
你要做出那样的效果,可以先把word转化为flash,
然后再插入网页指定的区域。
word要转化为falsh,网上有很多这类的软件。
其实很没必要这样做,百度文库的效果是不方便阅读的。
但是把word直接转换成html,又被微软擅自添加了许多不兼容其他浏览器的代码。
需要用网页编辑器清理一下,Dreamweaver等软件就有这个专门的功能。
3.WORD转HTML的问题
方法一:这个简单,但不具有word的美观性,提前在word文档里居中,按Ctrl+A全选文档里所有内容,在上面工具里面居中或者快捷键:Ctrl+E,(不全选直接也可以居中),然后再保存为html格式。要想完美排版在网页文件里可以看下面第二种方法。
方法二:修改代码、右键html文件、选用记事本打开、重新用style去定义Table和body和div的居中样式、步骤如下:
1. 找到。..标签、我们曾称之为头文件容器。
2. 将以下css样式代码粘入。..中间:(注意不要放在其他的style容器内、要单独存放)
body{background:#999999; text-align:center;}
div{width:800px; margin:0 auto; background:#ffffff; text-align:left;}
以上简单注解:999999是body整体背景颜色;ffffff是div层的背景颜色、相当于你在word里中间的那区域;width:800px是div相当于word里中间显示的宽度;【text-align:left是文本及内容居左显示相当于你在word里写的时候都是从左开始、你可以换成text-align:center居中、text-align:right居右,这里去实现和word文档相媲美!】如果只去单个为table、body、div、加些居中代码,可能部分浏览器不能正常显示,这也是很多网页设计师头痛问题。
3. 然后将记事本中修改的内容直接保存;或者另存为单个网页文件如:mht、mhtml或者htm、html的网页都可以(自己写上后缀名即可)。
4.如何迅速将Word转换为Html
//将Word转换为Html
public string wordToHtml(System.Web.UI.HtmlControls.HtmlInputFile wordFilePath){Microsoft.Office.Interop.Word.ApplicationClass word = new Microsoft.Office.Interop.Word.ApplicationClass();
Type wordType = word.GetType();
Microsoft.Office.Interop.Word.Documents docs = word.Documents; // 打开文件
Type docsType = docs.GetType(); //应当先把文件上传至服务器然后再解析文件为html
//if (wordFilePath.PostedFile != null)
//{ //变换前路径 改动1
//string filePath = ViewState["sss"].ToString();
//} string filePath = File1.PostedFile.FileName;
object fileName = filePath; Microsoft.Office.Interop.Word.Document doc = (Microsoft.Office.Interop.Word.Document)docsType.InvokeMember("Open",
System.Reflection.BindingFlags.InvokeMethod, null, docs, new Object[]{ fileName, true, true }); // 转换格式,另存为html
Type docType = doc.GetType();
string filename = System.DateTime.Now.Year.ToString() + System.DateTime.Now.Month.ToString() + System.DateTime.Now.Day.ToString() +
System.DateTime.Now.Hour.ToString() + System.DateTime.Now.Minute.ToString() + System.DateTime.Now.Second.ToString(); //被转换的html文档保存的位置
string ConfigPath = AppDomain.CurrentDomain.BaseDirectory.ToString() + "Uploadfiles \\wordTmp\\" + filename + ".html";
object saveFileName = ConfigPath; docType.InvokeMember("SaveAs", System.Reflection.BindingFlags.InvokeMethod,
null, doc, new object[]{ saveFileName, Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatFilteredHTML }); // 退出 Word
wordType.InvokeMember("Quit", System.Reflection.BindingFlags.InvokeMethod, null, word, null);//转到新生成的页面
