【发布时间】:2010-06-22 16:51:52
【问题描述】:
无论如何我可以弹出一个窗口,只匹配来自 url 的查询字符串。示例代码如下
string popup = context.Request.QueryString["raisepopup"];
if (popup == "raise")
{
//Here when the query string matches to raise the pop up shoul be displayed with some information which is already grab in this class
}
请帮助我。谢谢
2# 谢谢
我试过了,效果很好。
现在我需要扩展我的问题,因为我的要求有所改变。我想在查询字符串上显示一个工具提示,而不是简单的弹出窗口。我尝试使用 ToolStripDropDown 类,但我认为它适用于 WPF 应用程序。我的是纯 webofrm 应用程序。当查询字符串与特定字符串匹配时,我是否有可能完成此工具提示?
非常感谢你
【问题讨论】:
标签: popup query-string tooltip