UpdatePanel 中的 IE6 PNG 透明度

发布于 2024-09-01 08:09:29 字数 181 浏览 5 评论 0原文

我有一个带有 UpdatePanel 的子页面,该页面连接到每 5 秒自动刷新一次的计时器。我尝试了一些不同的 PNG 修复,它们一直有效,直到 UpdatePanel 刷新该部分。然后,根据修复情况,PNG 会消失或恢复为不透明。当 UpdatePanel 刷新时,我是否需要强制运行 javascript?我该怎么办呢?

谢谢!

I have a child page with an UpdatePanel on it that is connected to a timer that autorefreshes every 5 seconds. I've tried a few different PNG fixes, and they work until the UpdatePanel refreshes that section. Then, depending on the fix the PNGs either disappear or go back to nontransparent. Do I need to forcefully run the javascript when the UpdatePanel refreshes? How would I go about this?

Thanks!

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

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

发布评论

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

评论(1

素罗衫 2024-09-08 08:09:29

如果您使用 JavaScript 技巧来解决 IE 6 缺乏 png 透明度的问题,则需要使用 ScriptManager 注册脚本,以便在 UpdatePanel 刷新时运行。

protected void Page_Load(object sender, EventArgs e)
{ 
    ScriptManager.RegisterStartupScript(this, typeof(Page),
         UniqueID, "doSomething()", true);
}

MSDN 参考

If your using a JavaScript trick to get around IE 6's lack of png transparency, you need to register your script with the ScriptManager to run when the UpdatePanel refreshes.

protected void Page_Load(object sender, EventArgs e)
{ 
    ScriptManager.RegisterStartupScript(this, typeof(Page),
         UniqueID, "doSomething()", true);
}

MSDN Reference

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