• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NET打开WORD的3种展示方式

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

在寻找ASP.NET在线预览WORD的方法时,无意间看到了3种打开WORD的展示方法,分享咯!!!。

1.以弹出框选择方式打开WORD。

aspx源码:

    <iframe ></iframe>
aspx.cs源码:

    protected void Page_Load(object sender, EventArgs e)
    {
        ifr_test.Attributes["src"] = "temp/新建 Microsoft Word 文档.docx";
    }

2.使用office直接打开WORD

aspx源码:

        <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
aspx.cs源码:

    protected void Button1_Click(object sender, EventArgs e)
    {
        Microsoft.Office.Interop.Word.Application wapp = new Microsoft.Office.Interop.Word.Application();   //在office软件中打开
        wapp.Visible = true;
        object filename = Server.MapPath("~/temp/新建 Microsoft Word 文档.docx"); ;
        object isread = false;
        object isvisible = true;
        object miss = System.Reflection.Missing.Value;
        wapp.Documents.Open(ref filename, ref miss, ref isread, ref miss, ref miss, ref miss, ref miss, ref miss,
                            ref miss, ref miss, ref miss, ref isvisible, ref miss, ref miss, ref miss, ref miss);
        wapp = null;
    }

3.在浏览器下方提示打开WORD

aspx源码:

        <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />
aspx.cs源码:

   protected void Button1_Click(object sender, EventArgs e)
    {
        FileToWord(this.Page, "新建 Microsoft Word 文档.docx");
    }
  public void FileToWord(System.Web.UI.Page page,string File)
    {
        string Pa = page.Server.MapPath("~/temp/" + File);
        page.Response.AppendHeader("Content-Disposition", "attachment;filename=" + File + "");
        page.Response.ContentType = "application/ms-word";
        page.Response.WriteFile(Pa);
        page.Response.End();
    }


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Asp.netMvc身份验证发布时间:2022-07-10
下一篇:
操作MSSQLServer存储过程的类(外加ASP.NETMessageBox类)发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap