html-frames

How to communicate between frames?

让人想犯罪 __ 提交于 2019-11-26 20:26:52
I'm maintaining an application that goes sort of like this: There is a Page A with a Frame that shows Page B. Now page B is part of a completely different product in a separate domain. Now, they want that when an option in B is clicked, the WHOLE page is redirected to another page in A. The problem is that the url of A is something like www.client.A.com/Order/Details/123 , and when we click in be it should redirect to something like www.client.A.com/Order/Edit/123 but B doesn't know anything about A. It doesn't know which order # is currently selected or anything about A. Page A who has the

How to communicate between frames?

£可爱£侵袭症+ 提交于 2019-11-26 11:07:03
问题 I\'m maintaining an application that goes sort of like this: There is a Page A with a Frame that shows Page B. Now page B is part of a completely different product in a separate domain. Now, they want that when an option in B is clicked, the WHOLE page is redirected to another page in A. The problem is that the url of A is something like www.client.A.com/Order/Details/123 , and when we click in be it should redirect to something like www.client.A.com/Order/Edit/123 but B doesn\'t know

Full-screen iframe with a height of 100%

白昼怎懂夜的黑 提交于 2019-11-25 23:07:07
问题 Is iframe height=100% supported in all browsers? I am using doctype as: <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> In my iframe code, if I say: <iframe src=\"xyz.pdf\" width=\"100%\" height=\"100%\" /> I mean will it actually take the height of the remaining page (as there is another frame on top with fixed height of 50px) Is this supported in all major browsers (IE/Firefox/Safari) ? Also regarding scrollbars,