日期:2014-05-17  浏览次数:20433 次

word转html
做了一个word转html的页面,使用office组件做的,本地调试没问题,部署到iis上本地也没问题,别人的电脑上传word过来的时候我电脑就跳出这个东西了,这个要怎么解决???(这个我手动选择后程序可以继续下去,没问题)
word html wod转html

------解决方案--------------------
改用线程


<%@ WebHandler Language="C#" Class="ajaxWordToHtml" %>

using System;
using System.Web;
using System.Threading;


public class ajaxWordToHtml : IHttpHandler
{

    private static object _lock = new object();
    string docPath = string.Empty;
    string htmlPath = string.Empty;
    bool Flang = false;
    string Message = string.Empty;

    [?STAThread]
    private void _Import()
    {



        object o = Type.Missing;

        try
        {

            Word.Application app = new Word.Application();
            app.Visible = false;


            object docFile = docPath;
            object readOnly = true;
            object fileName = htmlPath;


            /*office 2003 begin
            Word.Document doc = app.Documents.Open(ref docFile, ref o, ref readOnly, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o);
            object format = Word.WdSaveFormat.wdFormatFilteredHTML;
            doc.SaveAs(ref fileName, ref format, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o, ref o,