我有asp.net服务器。
我在IIS Web服务器上作为会话0上的服务运行它。
当客户点击按钮时,我想使用Excel打开.xltm文件。
但问题是我为远程调试的下一个代码得到了它我被卡在process1.Start()上,然后超时......
我在本地Visual Studio中调试脚本时没有问题。
我已经在同一位置写了\ read \ create访问文本文件,这意味着我拥有正确的权限。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication2.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using murrayju.ProcessExtensions;
namespace WebApplication2
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process process1 = new System.Diagnostics.Process();
process1.StartInfo.WorkingDirectory = Request.MapPath("~/");
process1.StartInfo.FileName = Request.MapPath("test.xltm");
process1.StartInfo.Arguments = arguments;
process1.StartInfo.LoadUserProfile = true;
process1.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
process1.Start();
process1.WaitForExit();
process1.Close();
}
}
}