当详细信息视图控件可见时,有没有办法使网页变暗?

发布于 2024-11-29 20:35:48 字数 175 浏览 3 评论 0 原文

我熟悉一些网站,当出现消息框时,网页的亮度会变暗,以专注于特定的消息。我正在使用 Microsoft Web Developer 2010 构建一个网站。一个 ASP.net 网站。 我有一个 DetailsView 控件来编辑记录,我希望它显示在屏幕中央,位于其他所有内容之上,其他所有内容都变暗,直到它关闭。
感谢您的帮助!

I am familiar with sites that when a message box appears, the web page dims in brightness, to focus on the particular message. I am building a site with Microsoft Web Developer 2010. A ASP.net site.
I have a DetailsView control to edit records, and i would like it to be displayed in the center of the screen, on top of everything else, with everything else dimmed out, until it is closed.
Thank you for your help!

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

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

发布评论

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

评论(2

心欲静而疯不止 2024-12-06 20:35:48

您可以使用 ajax 中的 Modal 弹出窗口控件,并将 DetailsView 控件放入弹出窗口中。

在这里查看模态弹出窗口工作示例 http://www.asp.net/web-forms/overview/ajax-control-toolkit/modalpopup/launching-a-modal-popup-window-from-server-code-cs

看一下这个实现示例
详细信息查看和查看模态弹出控件

You can use the Modal popup control from ajax and put your DetailsView control in the popup.

Have a look at the Modal Popup working example here http://www.asp.net/web-forms/overview/ajax-control-toolkit/modalpopup/launching-a-modal-popup-window-from-server-code-cs

Have a look at this implementation example using
DetailsView & Modal Popup Control

倾城泪 2024-12-06 20:35:48

我最喜欢的方法是让 jQuery 完成工作,将相关代码放入 jQueryUI 对话框

您还需要这个答案,以确保 jQuery不会将控件重新定位到 FORM 标记之外(因此,使它们对 ViewState 不可见)。

My favorite way to do this is to let jQuery do the work, by putting the relevant code into a jQueryUI dialog.

You'll also need this answer, to make sure jQuery doesn't relocate your controls outside the FORM tag (and thus, make them invisible to the ViewState).

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