0

我有以下两个网址

  1. www.kadco-international.com
  2. www.kadco-international.com/company.html

m 使用 asp.net 中的 iframe 将用户抛出到 company.html 页面,但它总是抛出到 index.html。

is是我正在尝试的:http: //jsfiddle.net/Mohsin_Ali/ZqbCK/

代码:

<iframe width="340" scrolling="no" height="37" 
src="www.kadco-international.com/company.html" id="ifr" hspace="0" 
marginwidth="0" marginheight="0" vspace="0" 
style="width: 585px; height: 47px; border: #dddddd 1px solid" ></iframe>
4

1 回答 1

3

这是你想要的吗?我只是在 src 中添加了一个 http://。

<iframe width="340" scrolling="no" height="37" src="http://kadco-international.com/company.html" id="ifr" hspace="0" marginwidth="0" 

marginheight="0" vspace="0" style="width: 585px; height: 47px; border: #dddddd 1px solid" ></iframe>
于 2013-06-20T14:09:26.120 回答