ASP.NETページにMessageBoxを表示するにはどうすればよいですか?完了後、メッセージを表示するためにbZが必要です。
質問する
1323 次
5 に答える
0
このjqueryプラグインを使用できます
およびコードビハインドで:
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Key", "noty({ text: '<div>Thanks<br/><br/>Saved!</div>', layout: 'center', type: 'information' });", true);
于 2012-09-27T13:52:50.910 に答える
0
簡単にできる方法は
Response.Write("<script>alert('Hello');</script>");
また
string script = "<script type=\"text/javascript\">alert('Hello world');</script>";
if (!page.ClientScript.IsClientScriptBlockRegistered("alert"))
{
page.ClientScript.RegisterClientScriptBlock(page.GetType(), "alert", script, false);
}
于 2012-09-27T11:30:59.630 に答える
0
すべての Web フォームの暗号化された回答はどうなっていますか? 彼がたまたま Web フォームを使用しているからといって、Web フォーム ソリューションが優れているとは限りません。
どちらかを使用
<script type="text/javascript"> alert('hello world');</script>
また
<script type="text/javascript"> confirm('are you there?');</script>
メッセージボックスまたは確認ボックス用
于 2012-09-27T12:49:26.567 に答える
0
使用してみてください:
コード ビハインド ファイルについて
protected void Button1_Click(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('hello World');", true);
}
aspx ファイル:
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />
于 2012-09-27T11:39:17.660 に答える
0
私のプロジェクトでは、削除ボタンのクリックをクリックして確認用のメッセージボックスを表示し、このようなdivを以下に表示します
私の見解では、メッセージ用に表示するdivがあります
<div id="dialog-confirm" title="Delete Country">
<p>
Are you soure you wont to delete this record ?</p>
</div>
私のリンク削除ボタンは
<asp:LinkButton id="lnkShow" runate="server" class="lnkDelete"></asp:LinkButton>
そして、私はこのリンクをこのように使用します
<script type="text/javascript">
$(function () {
$(".lnkDelete").button();
$("#dialog-confirm").dialog({
autoOpen: false,
model: true,
width: 300,
resizable: false,
height: 200
});
$(".lnkDelete").click(function (e) {
e.preventDefault();
var targeturl = $(this).attr("href");
$("#dialog-confirm").dialog({
buttons: {
"Confirm": function () {
window.location.href = targeturl;
},
"Cancel": function () {
$(this).dialog("close");
}
}
});
$("#dialog-confirm").dialog("open");
});
});
</script>
}
私はこれがあなたを助けると思う
于 2012-09-27T14:03:27.227 に答える