我有这个 aspx 页面,它工作得很好。
protected void Page_Load(object sender, EventArgs e)
{
string clientID = Request.QueryString["ID"];
string clientName = Request.QueryString["NAME"];
folderSearch(clientID, clientName);
}
public void folderSearch(string clientID, string clientName)
{
SYS.getInfo(searchDBInfo =>
{
string folderPath = searchDBInfo.sPath + "\\" + clientID + " - " + clientName;
if (Directory.Exists(folderPath))
{
Process.Start(folderPath);
}
else
{
Directory.CreateDirectory(folderPath);
Process.Start(folderPath);
}
});
}
我希望运行 aspx 的浏览器窗口在显示后立即关闭。意味着用户应该看不到任何正在运行的浏览器,但它仍然可以在后台完成其工作。
请帮帮我!谢谢。