可用模式弹出窗口

发布于 2024-10-26 19:39:41 字数 149 浏览 1 评论 0原文

问:

我想列出 asp.net 中最常用的模态弹出窗口,以选择最适合我的情况的模态弹出窗口,我以前使用过 Ajax 模态弹出窗口,但我不喜欢它,我想要模态弹出窗口,或者它是一个扩展程序或jquery或任何允许我访问.cs(服务器端)的东西..

提前致谢

Q:

I want to list the most used modal pop up in asp.net to select the convenient one to my case, i used Ajax modal pop up before but i don't like it,i want the modal pop either it was an extender or jquery or what ever allow me to access the .cs (server side)..

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋千易 2024-11-02 19:39:41

Jquery模型对话框是最好的。您可以轻松地将其与asp.net集成。

查看以下链接,了解如何在 asp.net 中集成 Jquery 模型对话框

如何在asp.net中使用jquery对话框

Jquery model dialog is best.You can easily integrate this with asp.net.

Check out the following link for how to integrate Jquery model dialog in asp.net

How to use jquery dialog in asp.net

不念旧人 2024-11-02 19:39:41

您可以在服务器端执行每个 javascript/jQuery 代码
您可以使用后面代码中的 RegisterStartupScript 方法:

public void SomeButton_Click(Object sender, EventArgs e)
{
    string script = "$('#someid').dialog('open');";
    ClientScript.RegisterStartupScript(GetType(), "popup", script, true);
}

您可以使用 < a href="http://jqueryui.com/demos/dialog/" rel="nofollow">jQuery UI 对话框 或 Colorbox 和其他可用的插件。

You Can Execute every javascript/jQuery Code Serverside
You could use the RegisterStartupScript method from the code behind:

public void SomeButton_Click(Object sender, EventArgs e)
{
    string script = "$('#someid').dialog('open');";
    ClientScript.RegisterStartupScript(GetType(), "popup", script, true);
}

you may use jQuery UI Dialog Or Colorbox and other available Plugins.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文