Hi
Is there anyway that I can pop up a window with just matching a query string from the url. Sample code is like follows
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
}
Please help me. Thank you
2# Thank you
I tried it and it is working fine.
Now I need to extend my question as kinda change in my requirement. Instead of simple popup I want to show a tooltip on querystring. I tried using ToolStripDropDown class but I think it is for WPF application. Mine is pure webofrm application. Is there any chance that I can accomplish this tooltip pop up when query string matches with specific string?
Thank you veru much