需要在其他网页上托管div内容

时间:2013-09-20 10:46:36

标签: c# jquery html asp.net

我有两个网页,

one.html

<html>
    <head>
        <title>Sample One</title>
    </head>
    <body>
        <h2>Welcome</h2>
        <div id="one"><h3>have fun</h3></div>
        <div style="background-color:#F0782A; width:200px">
            <div id="content">
                no content
            </div>
        </div>
    </body>
</html>

哪个位于物理上但不在解决方案中。

two.aspx

<html>
    <head>
    </head>
    <body>
        <h3>Welcome to new work</h3>
        <div>
            <a href="two.html">another file</a>
        </div>
    </body>
</html>

我的解决方案中提供了哪些内容。

我想将<body>的{​​{1}}代码内容放入two.aspx div one.html

注意:

  1. 我无法访问id="content"文件,但我可以使用one.html文件位置。
  2. 如果我运行解决方案,我应该看到one.html页面上有新放置的数据。
  3. 例如: 我在one.html中分配了一个www.yahoo.com的div,我的解决方案中有id="newcontent"个文件。现在,我必须将two.aspx内容放入two.aspx yahoo.com的div中。

0 个答案:

没有答案