IE8 issue--URGENT PLZZZZ....
-
Hi All, I was facing a issue in IE8 - When I open second/third level pop-up window and closes it then it opens on new page.I solved the issue.But I did tested it on IIS 5.1..When I deployed it on server having IIS6 then it reflected the same POP-UP issue again. Any Help will be helpful...
-
Hi All, I was facing a issue in IE8 - When I open second/third level pop-up window and closes it then it opens on new page.I solved the issue.But I did tested it on IIS 5.1..When I deployed it on server having IIS6 then it reflected the same POP-UP issue again. Any Help will be helpful...
How are your opening your pop-up window? If it is through javascript, it may not have to to anything with the version of IIS you are using. Show us a code as to how your are opening your pop-up window. Also, mind you some browsers can be set up to open popup windows in new window. check your browser setting.
Yusuf May I help you?
-
Hi All, I was facing a issue in IE8 - When I open second/third level pop-up window and closes it then it opens on new page.I solved the issue.But I did tested it on IIS 5.1..When I deployed it on server having IIS6 then it reflected the same POP-UP issue again. Any Help will be helpful...
The ones who can help you the best ignore URGENT PLZZZZ posts
I know the language. I've read a book. - _Madmatt
-
The ones who can help you the best ignore URGENT PLZZZZ posts
I know the language. I've read a book. - _Madmatt
-
I said ones who can help most. Mine is not helpful to problem
I know the language. I've read a book. - _Madmatt
-
How are your opening your pop-up window? If it is through javascript, it may not have to to anything with the version of IIS you are using. Show us a code as to how your are opening your pop-up window. Also, mind you some browsers can be set up to open popup windows in new window. check your browser setting.
Yusuf May I help you?
function fnOpenModalScreen(URL,WindowObj,Features) { window.showModalDialog(URL,WindowObj,Features) }
-
function fnOpenModalScreen(URL,WindowObj,Features) { window.showModalDialog(URL,WindowObj,Features) }
-
Havent tested it in IE8 (For some reason the company here only wants IE7 compability) But try using
window.open(URL, windowName[, windowFeatures])
instead that might work. if you just want to see if it can open just add
window.open(URL)
Best Regards HE
I dont want to open a new window.My requirement is to open a new POP-UP on button click and then on closing that POPUP the parent page(having that button)will refresh.But the error is that on closing/any button click on the POPUP, POPUP open in new window/browser..
-
Hi All, I was facing a issue in IE8 - When I open second/third level pop-up window and closes it then it opens on new page.I solved the issue.But I did tested it on IIS 5.1..When I deployed it on server having IIS6 then it reflected the same POP-UP issue again. Any Help will be helpful...
Can you post some simple case code that demonstrates the problem?