Popup control from dll in web page
Posted
by Argons
on Stack Overflow
See other posts from Stack Overflow
or by Argons
Published on 2010-05-17T13:14:25Z
Indexed on
2010/05/17
13:20 UTC
Read the original article
Hit count: 178
I'm developing a kind of framework that will work in web and win, so I have this interface:
public interface IViewsManager
{
...
void ShowMessage();
...
}
And I have the implementation for win that call a popup control from another dll. My problem is when I try to implement it for web enviroment, I have to call a popup control from another dll, and I would like to show the popup and the web page disables with a gray layer, and I don't know how to do it.
Please, any help will be appreciated. Thanks in advance.
© Stack Overflow or respective owner