This functionality was working fine in my application for years, but after the security update, I experience this issue.
I've 100% simplified my application but the issue remains:
I've an HTML page with 2 named frames
htmlpage miframe()
}%>
In the 1st frame there is a simply stateless form with this script in the button:
MiFrame = "ElSegundoMarcoDeArturo";
openUrl(MiUrl + "", "iframe", MiFrame);
This sentence opens MiUrl in a new window. Not in the frame.
Curiously, if I include the openUrl in the HTML page, it works fine:
htmlpage miframe()
MiFrame = "ElSegundoMarcoDeArturo";
openUrl(MiUrl + "", "iframe", MiFrame);
}%>
Any idea where is my mistake?