Как загрузить полную HTML-страницу в поле в пределах полной HTML-страницы - PullRequest
0 голосов
/ 21 октября 2011

У меня есть HTTP Post Return, который включает целую HTML-страницу, которую я пытаюсь отобразить в рамке (или отдельной области) на другой странице.Я думал о том, чтобы сохранить его как временный документ, а затем снова отобразить через Frame или iFrame ... но это кажется запутанным.Я надеюсь, что есть более элегантное решение.

Вот пример HTML-кода, который я пытаюсь отобразить на другой HTML-странице без необходимости сначала сохранять его в файле на сервере.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head></head>

<script language="javascript">

function openWin(page,win_width,win_height){

try {popup_window.close();} catch(e){}if ( page.indexOf("mailto") == -1 ) {

var options ="scrollbars=yes, width=" + win_width + ", height=" + win_height;

var win = window.open(page, 'MyWin', options);

if (window.focus) { win.focus() }}}

</script>



<body bgcolor="#E5E5E5">

<table  cellspacing="0" cellpadding="0">

<tr>

<td style="font-family:Arial;font-size:13px;color:#000000;font-weight:bold;">Thank You</td>

</tr>

<tr><td height="10px;"></td></tr>

<tr>

<td style="font-family:Arial;font-size:12px;color:#000000;">Representatives from the following companies will be contacting you soon.</td>

</tr>

<tr><td height="10px;"></td></tr>

<tr><td><table id="someTable" cellspacing="0" cellpadding="0">

<tr>

<td>

<table  cellspacing="0" cellpadding="0">

<tr>

<td align="center">

<img src="http://someurl.com/somepic.gif" border="0" alt="TEXT" title="TEXT"/>

</td>

</tr>

<tr>

<td align="center" style="font-family:Arial;font-size:12px;color:#000000;padding-top:5px;">

TEXT

</td>

</tr>

<tr>

<td valign="top" align="center" style="font-family:Arial;font-size:12px;color:#000000;padding-top:5px;">

<a href="javascript:openWin('http://someurl.jsp','517','460');" title="More Information">More Information</a>

</td>

</tr>

</table>

</td>

<td>

<table  cellspacing="0" cellpadding="0">

<tr>

<td align="center">

<img src="http://someurl.com/somepic.gif" border="0" alt="TEXT" title="TEXT"/>

</td>

</tr>

<tr>

<td align="center" style="font-family:Arial;font-size:12px;color:#000000;padding-top:5px;">

TEXT

</td>

</tr>

<tr>

<td valign="top" align="center" style="font-family:Arial;font-size:12px;color:#000000;padding-top:5px;">

<a href="javascript:openWin('http://someurl.jsp','517','460');" title="More Information">More Information</a>

</td>

</tr>

</table>

</td>

<td>

<table  cellspacing="0" cellpadding="0">

<tr>

<td align="center">

<table cellspacing="0" cellpadding="0" width="140px;"><tr><td width="140px;"><img src="http://someurl.com/somepic.gif" border="0" alt="TEXT" title="TEXT"/></td></tr></table>

</td>

</tr>

<tr>

<td align="center" style="font-family:Arial;font-size:12px;color:#000000;padding-top:5px;">

Text

</td>

</tr>

<tr>

<td valign="top" align="center" style="font-family:Arial;font-size:12px;color:#000000;padding-top:5px;">

<a href="javascript:openWin('http://someurl.jsp','517','460');" title="More Information">More Information</a>

</td>

</tr>

</table>

</td>

</tr>

<tr><td height="10px;"></td></tr>

</table></td></tr></table>

<table style="display:none"><tr><td><input type="hidden" id="XXDataCaptureKey" value="12345" /><input type="hidden" id="DATA" value="data" /></td><tr></table>


 <!-- ******** XX RESPONSE ********* 
* KEY: 12345 
* DATA: data 
* STATUS: SUCCESS
***************** 
--> 


</body></html>

Спасибо, что заглянули!

1 Ответ

0 голосов
/ 21 октября 2011

вы можете подать его в элементе

...