关于ajax控件工具包的模态弹出控件

发布于 2024-08-23 20:44:39 字数 208 浏览 5 评论 0原文

首先大家好会员 现在我的第一个演讲是我有一个 ajax 控制工具包,它在 vs 2008 上不起作用 所以请帮助我 另一个问题我为该网站制作了一个模态弹出代码,但它无法正常工作 意味着当我单击按钮时,它只会显示 Loader 图像,但不会显示用黑色覆盖整个页面的页面或 div 标签 所以我需要那个背景色 div 标签

请帮助我 我提前严重陷入这个问题

谢谢

First of all hi too member
now my 1st talk i had one ajax control tool kit tht doesnt work on the vs 2008
so please help me for tht and
other problem I had make one modal pop code for the site but it nt working properly
mean when I click on the button it will only display Loader image but it did nt display tht page or div tag which cover the whole page with black color
so i need that back ground color div tag

Some please help me
I am badly stuck with this problem

in advance thank you

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

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

发布评论

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

评论(1

天荒地未老 2024-08-30 20:44:39

如果我正确地解读了您的帖子,您可以显示 ModalDialog 但它不会“着色”页面的其余部分,因此使弹出窗口成为非模态?

如果是这种情况,则需要将 ModalPopupExtenderBackgroundCssClass 属性设置为有效的 CSS 类。

我一般用这个...

 .ModalBackground
 {
      background-color:Gray;

      filter:alpha(opacity=50);
      -moz-opacity:0.5;
      -khtml-opacity: 0.5;
       opacity: 0.5;
 }

 <ajaxToolkit:ModalPopupExtender ID="ModalPopupExtender1" runat="server" BackgroundCssClass="ModalBackground" [... the rest of the attributes....] />

If I have deciphered your post correctly, you can show the ModalDialog but it doesn't "color" the rest of the page, therefore making the popup non-Modal?

If this is the case, then you need set the BackgroundCssClass attribute of the ModalPopupExtender to a valid CSS class.

I normally use this...

 .ModalBackground
 {
      background-color:Gray;

      filter:alpha(opacity=50);
      -moz-opacity:0.5;
      -khtml-opacity: 0.5;
       opacity: 0.5;
 }

 <ajaxToolkit:ModalPopupExtender ID="ModalPopupExtender1" runat="server" BackgroundCssClass="ModalBackground" [... the rest of the attributes....] />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文