Friday, May 9, 2014

Working with Iframes

Working with I Frames.

Design the Form as shown Below

Default.aspx
<div>
<iframe  id="frame1" runat="server"width="400"height="400"></iframe>

</div>


Default.aspx.cs

protected void Page_Load(object sender, EventArgse)
{
frame1.Attributes["src"] = "http://www.w3cschools.com";
}


Output:



No comments:

Post a Comment

Thank you for visiting my blog

Kubernetes

Prerequisites We assume anyone who wants to understand Kubernetes should have an understating of how the Docker works, how the Docker images...