0

我正在开发一个地图应用程序 ( VS2008 C#),并在我的主 aspx 中显示我的地图窗口 (Esri ADF MapControl)。

我现在正在编译一个带有另一个 aspx 页面的打印模板,该页面将显示和打印来自主 aspx 的当前地图。

通常我会使用 Frame 标签在我的打印模板中显示主要的 aspx,但我只是对复制地图 DIV 感兴趣。

4

1 回答 1

0

您可以尝试使用 jquery 进行操作:

<!DOCTYPE html>
<html>
<head>
    <style>
 body{ font-size: 12px; font-family: Arial; }
 </style>
    <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>

<b>Footer navigation:</b>
<div id="mydiv"></div>

<script>
  $("#mydiv").load("mypage.html");
</script>

</body>
</html>

来源:http ://api.jquery.com/load/

于 2013-01-07T13:55:54.327 回答