如何在我的网站上显示网站部分

时间:2012-10-15 10:18:25

标签: asp.net html vb.net

我正在尝试在我的网页上显示糖率但是我无法做到这一点。但是有一个网站上显示了糖价,我想在我的asp.net网页上阅读费率。以下是网站链接

http://www.sugaronline.com/

我想在我的网站上显示这部分

enter image description here

请任何人帮助我在asp.net中执行此操作

1 个答案:

答案 0 :(得分:1)

您可以尝试使用此方法。

<html>
 <head>
<title></title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

  <style type="text/css">
  #container{
width:100px;
height:400px;
border:1px solid #000; 
overflow:hidden;
margin:auto;
}
#container iframe {
width:200px;
height:750px;
margin-left:-100px;
margin-top:-350px;   
border:0 solid;
}

</style>

</head>
<body>


<div id="container">
<iframe src="http://www.w3schools.com/css/default.asp" scrolling="no"></iframe>
</div>


</body>
</html>

请参阅此Link