As my current project demands: I’m developing an ASP.net 3.0 website with Internet Explorer 6.0 SP1.
My problem is when I execute a javascript window.showModalDialog() from two separated browers they uses the same opened modal, I need to open a new modal for each browser.
Why is that?, Is there a way to avoid it?
You need to set the target of the showModalDialog call to “_blank” or “_new” (I forget which) – otherwise it will reuse an open browser instance.