Hello,
I have the problem that with various browsers, the content of a html page in a RadWindow is displayed completely wrong when this html page contains javascript.
If I try to open directly the html page into these browsers, this one is displayed correctly.
Tested browsers:
Web Server:
ASP.NET Components:
Situation:
Test.aspx: Contains a RadRotator. After clicking on an item on this one, a RadWindow with a html page named Test.html is open.
Test.html: The page in the RadWindow
And I obtain as result in the RadWindow:
Any Idea?
Best regards.
I have the problem that with various browsers, the content of a html page in a RadWindow is displayed completely wrong when this html page contains javascript.
If I try to open directly the html page into these browsers, this one is displayed correctly.
Tested browsers:
- Internet Explorer 6 & 7: Correct display.
- Firefox 3 & 3.5: Wrong display.
- Opera 9.64: Wrong display.
Web Server:
- IIS 7 (2008)
ASP.NET Components:
- Telerik ASP.NET AJAX 2009 Q2 (701)
Situation:
Test.aspx: Contains a RadRotator. After clicking on an item on this one, a RadWindow with a html page named Test.html is open.
| <telerik:RadWindow ID="BlaControl" runat="server" |
| ShowContentDuringLoad="false" |
| ReloadOnShow="true" |
| VisibleStatusbar="false" |
| AutoSize="true" |
| Behaviors="Close"> |
| </telerik:RadWindow> |
| <telerik:RadCodeBlock ID="BlaScript" runat="server"> |
| <script type="text/javascript"> |
| function rad_ItemClicked_Handler(sender, args) { |
| var nRadWindow = $find('<%=BlaControl.ClientID%>'); |
| nRadWindow.setUrl('Test.html'); |
| nRadWindow.show(); |
| } |
| </script> |
| </telerik:RadCodeBlock> |
Test.html: The page in the RadWindow
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| <html lang="fr" xml:lang="fr"> |
| <head> |
| <title>Test (France)</title> |
| </head> |
| <body><center> |
| <script language="JavaScript" type="text/javascript"> |
| function Test_Progress(progress) { |
| window.status=progress; // An example of how the progress value can used |
| } |
| </script> |
| Coucou4 |
| </center> |
| </body> |
| </html> |
And I obtain as result in the RadWindow:
| �������4�ON�0��z��j�Te�/�i)� V�$�?ȵ#g�!NƂ#q�ݽ��<��~�����Q�^@A[ �Nj�u��i��<���U|���w 2eB�/�����q�4��L=mr?�{e�lyRw/���ÁߥH��e��~+gǪ�H�X%(`5��J�.��R�R+ ]���1��N���#�T���[R'�����"ǀ݈��t�}T-!�oq?�3�raK+���微�� ��:�1|Д*ՍW� [�����^l+��3(tT G`'�EH�[c:|�K���#mm�=\�;��Kÿ�7�{p� |
Any Idea?
Best regards.