| Author: Karthikeyan S 30 Aug 2008 | Member Level: Gold | Rating: Points: 5 |
Hi,
Though IFrame's bordercolor is not working, use the style property of the IFrame control.
Then set the border-width, border-style and border-color for the IFrame control.
Following is the sample code to do that one:
<iframe bordercolor="green" src="Default.aspx" height="200px" width="500px" scrolling="auto" style="border-width:2px; border-style:solid; border-color:Red;"> </iframe>
|