如果我使用Microsoft.Office.Interop.Excel如何在客户端PC中保存xsl文件

时间:2013-08-29 07:16:05

标签: asp.net

当我在我的个人电脑上工作时,我的下面的代码工作正常,xsl将保存在指定的路径中。 但是当托管应用程序时和保存xsl文件期间,我收到错误信息   HRESULT的异常:0x800A03EC

请让我知道如何在客户端pc中保存xsl文件。我需要修改我的代码。???

  public void Convertoxsl(DataSet ds)
        {
            Application ExcelApp = new Application();
            Workbook ExcelWorkBook = null;
            Worksheet ExcelWorkSheet = null;
            string FileName = string.Empty;
            ExcelApp.Visible = true;
            ExcelWorkBook = ExcelApp.Workbooks.Add(XlWBATemplate.xlWBATWorksheet);

            List<string> SheetNames = new List<string>();
            string sn = ddlPageName.SelectedItem.Text;
            SheetNames.Add(sn);


            try
            {
                int getcol = 0;
                for (int i = 1; i < ds.Tables.Count; i++)
                    ExcelWorkBook.Worksheets.Add(); //Adding New sheet in Excel Workbook

                for (int i = 0; i < ds.Tables.Count; i++)
                {
                    int r = 1; // Initialize Excel Row Start Position  = 1

                    ExcelWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet)ExcelWorkBook.Worksheets[i + 1];

                    //Writing Columns Name in Excel Sheet

                    for (int col = 1; col <= ds.Tables[i].Columns.Count; col++)
                    {
                        if (ds.Tables[i].Columns.Count != 3)
                        {
                            return;
                        }
                        ExcelWorkSheet.Cells[r, col] = ds.Tables[i].Columns[col - 1].ColumnName;
                        getcol = col;
                    }



                       r++;



                    //Writing Rows into Excel Sheet
                    for (int row = 0; row < ds.Tables[i].Rows.Count; row++) //r stands for ExcelRow and col for ExcelColumn
                    {
                        // Excel row and column start positions for writing Row=1 and Col=1
                        for (int col = 1; col <= ds.Tables[i].Columns.Count; col++)
                            ExcelWorkSheet.Cells[r, col] = ds.Tables[i].Rows[row][col - 1].ToString();


                        r++;
                    }
 ExcelWorkSheet.Name = SheetNames[i];//Renaming the ExcelSheets


            }


           string dirPageName = D:\projectPath;
           FileName =dirPageName +abc + ".xlsx";


            if (!Directory.Exists(dirPageName))
            {
                Directory.CreateDirectory(dirPageName);
            }

            if (File.Exists(FileName))
            {
                File.Delete(FileName);
            }


            ExcelWorkBook.SaveAs(FileName);

            ExcelWorkBook.Close();
            ExcelApp.Quit();
            Marshal.ReleaseComObject(ExcelWorkSheet);
            Marshal.ReleaseComObject(ExcelWorkBook);
            Marshal.ReleaseComObject(ExcelApp);
            ltMessage.Text ="File Successfully exported";
            ltMessage.Visible = true;




        }
        catch (Exception exHandle)
        {



            ltMessage.Text = exHandle.Message;
            ltMessage.Visible = true;
        }
        finally
        {

            foreach (Process process in Process.GetProcessesByName("Excel"))
                process.Kill();
        }
    }

1 个答案:

答案 0 :(得分:0)

HRESULT:0x800A03EC是一个未知(对VB.Net)COM错误。这通常发生在Excel抛出一些错误,因为您的输入或参数错误或不起作用。

还要仔细检查错误详细信息。在我的情况下,数据部分有一个项目,它给了我关于Excel抛出的确切错误的线索。

@Erwin说:IIS用户帐户必须具有写入文件的权限。在以下文章How to Create Excel file in ASP.NET C#

中搜索0x800A03EC