この 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 を実行しているブラウザ ウィンドウが表示されたら、すぐに閉じたいと思います。ユーザーは実行中のブラウザを見ることができないが、バックグラウンドでジョブを実行できることを意味します。
みんな助けてください!ありがとう。