user1819920
user1819920

Reputation: 2248

how to display a website portion into my web site

I am Trying to display the Sugar Rates on My Web page But I am Unable to do that.Actualy there is a web site on which sugar rates are displayed and i want to read the rates on my asp.net web page.Below is web site link

http://www.sugaronline.com/

and i wan to display the this portion on my web

enter image description here

Please any One Help me to do this in asp.net

Upvotes: 2

Views: 2065

Answers (1)

Vivek Dragon
Vivek Dragon

Reputation: 2248

You can try By this method.

<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>

Refer this Link

Upvotes: 1

Related Questions