what is the use of javascript in html?wht is iframes?
what is the use of javascript in html?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Lakshmanan Sethu SankaranarayanPosted Jun 4, 2014, 1:57 AM
A simple tutorial is given below
http://www.dyn-web.com/tutorials/iframes/
Rajagopalan R VPosted Jun 4, 2014, 1:48 AM
pavan sunkara
What is IFrame?
An IFrame (Inline Frame) is an HTML document embedded inside another HTML document on a website. The IFrame HTML element is often used to insert content from another source, such as an advertisement, into a Web page. Although an IFrame behaves like an inline image, it can be configured with its own scrollbar independent of the surrounding page's scrollbar.
Tag Used in Iframe.aspx
<iframe frameBorder="0" id="callIFrame" scrolling="no" runat="server" style="height: 460px; width: 775px;" />
Code Used in Iframe.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
this. callIFrame.Attributes["src"] = "../Web/Detail/Default.aspx";
}
This is IFrame Concept and Code to Call Another Page
For Much More Clear Refer to :
http://whatis.techtarget.com/definition/IFrame-Inline-Frame
If You Are Clear With this Solution For What You Queried For, kindly Mark it has Answer
With Regards.....,
R.V.Rajagopalan
Khan Abrar AhmedPosted Jun 3, 2014, 3:36 AM
http://www.c-sharpcorner.com/UploadFile/79037b/start-with-javascript/