繁体   English   中英

下载Excel文件ASP VB.Net

[英]Download Excel File ASP VB.Net

我的目标是下载我创建的Excel

到目前为止的代码,可以正常工作:

Dim xlApp As Excel.Application
        Dim xlWorkBook As Excel.Workbook
        Dim xlWorkSheet As Excel.Worksheet
        Dim misValue As Object = System.Reflection.Missing.Value

        xlApp = New Excel.ApplicationClass
        xlWorkBook = xlApp.Workbooks.Add(misValue)
        xlWorkSheet = CType(xlWorkBook.Sheets("sheet1"), Excel.Worksheet)
        xlWorkSheet.Cells(1, 1) = "RECORD_STATUS"
        xlWorkSheet.Cells(1, 2) = "VENDOR_NO"
        xlWorkSheet.Cells(1, 3) = "PARTS_NO"
        xlWorkSheet.Cells(1, 4) = "EFECTIVE_DATE"
        xlWorkSheet.Cells(1, 5) = "CURRENCY_CODE"
        xlWorkSheet.Cells(1, 6) = "PRICE"


        xlWorkSheet.Cells(2, 1) = "A"
        xlWorkSheet.Cells(2, 2) = "NSEA"
        xlWorkSheet.Cells(2, 3) = "13231JX02A"
        xlWorkSheet.Cells(2, 4) = "2013/03/03"
        xlWorkSheet.Cells(2, 5) = "IDR"
        xlWorkSheet.Cells(2, 6) = "10"

        xlWorkSheet.SaveAs("D:\TemplateVendor.xlsx")

        xlWorkBook.Close()
        xlApp.Quit()
        releaseObject(xlApp)
        releaseObject(xlWorkBook)
        releaseObject(xlWorkSheet)

这保存在驱动器D中,我如何保存在桌面路径中并自动下载文件,谢谢

尝试这个 ..

path = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)

xlWorkSheet.SaveAs(path & "TemplateVendor.xlsx")

关于自动下载,您可以在这里阅读

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM