ボタンがあり、onclick がこのメソッドに設定されているため、単純な JS アラート ポップアップ ウィンドウが表示されます。
string message = "File is already open. <br>Please close the file and try again.";
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("<script type = 'text/javascript'>");
sb.Append("window.onload=function(){");
sb.Append("alert('");
sb.Append(message);
sb.Append("')};");
sb.Append("</script>");
ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", sb.ToString());
上記のコードを以前に使用したことがあり、機能しましたが、今回は機能しませんでした。唯一の違いは、このサイトではなく他のサイトのマスター ページを使用していたことと、このサイトにもタイマーが作動していることです。
<head>
aspx ページのロードに関連する JS はありますか?
protected void btnToCSV_Click(object sender, EventArgs e)
{
try
{
StreamWriter writer = new StreamWriter(@"\\server location\test.csv");
Some writer.write stuff...
writer.Close();
}
catch (Exception ex)
{
lblMessage.Visible = true;
string message = "File is already open. Please close the file and try again.";
ClientScript.RegisterClientScriptBlock(
this.GetType(),
"alert",
string.Format("alert('{0}');", message),
true);
}
}