Popup control from dll in web page
- by Argons
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.