バックグラウンドコードのJavaScriptがあります。javascriptダイアログボックスを表示することです。
ただし、このエラーは表示され続けます
The name 'ClientScript' does not exist in the current context
このコードはマスターページ内に配置されました。他のaspxファイルでもまったく同じコードを使用していましたが、これを除けば問題なく動作します。
これが私のコードです:
protected void Button2_Click(object sender, EventArgs e)
{
string message = "Order Placed Successfully.";
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()); string script = "alert('abc');";
}