473,394 Members | 1,674 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

what is IFrame

Hi All,
IFrame is a HtmlGenericControl name??
Where can i get this IFrame control at vs.net 2003?
Any example and guideline for IFRAME?

Thank you.

Best regards,
Ocurnos.
Nov 19 '05 #1
5 1900
=?Utf-8?B?RGFuaWVs?= <Da****@discussions.microsoft.com> wrote in
news:5D**********************************@microsof t.com:
Hi All,
IFrame is a HtmlGenericControl name??
Where can i get this IFrame control at vs.net 2003?
Any example and guideline for IFRAME?

There is no Iframe control in VS.NET. You can create it with
HTMLGenericControl or output the code manually with a Literal Control.
--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
Horrible experience at Newmarket Volvo:
http://newmarketvolvo.tripod.com
Nov 19 '05 #2
An IFRAME is an HTML element whose content is determined by another file
(usually an html file, but any valid web page URL). The content of that URL
is displayed inside an inline frame, which is basically a rectangle (if you
want to, you can think of it as a single cell table that gets it's content
from another file). A page that give a good description and syntax of an
IFRAME can be found at:

http://www.devguru.com/Technologies/...ml_iframe.html

The only way to enter an IFRAME using Visual Studio .NET 2003 is to start
typing the tag and then select it from the list that is displayed (or type
the whole thing manually). Good Luck!
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Daniel" <Da****@discussions.microsoft.com> wrote in message
news:5D**********************************@microsof t.com...
Hi All,
IFrame is a HtmlGenericControl name??
Where can i get this IFrame control at vs.net 2003?
Any example and guideline for IFRAME?

Thank you.

Best regards,
Ocurnos.

Nov 19 '05 #3
....or, more specifically with the HtmlGenericControl option, if you notice,
one of the constructor overloads for HtmlGenericControl takes a string for
the Tag Name. You can create an IFRAME by using this constructor if you
want to create it dynamically or, if you already have an IFRAME defined on
your page, you can give it an ID and set runat="server" (make sure you
declare it in your code behind if you're using codebehinds).

http://msdn.microsoft.com/library/de...sctortopic.asp

HTH
----------------
Dave Fancher
http://www.davefancher.com

"Lucas Tam" <RE********@rogers.com> wrote in message
news:Xn***************************@127.0.0.1...
=?Utf-8?B?RGFuaWVs?= <Da****@discussions.microsoft.com> wrote in
news:5D**********************************@microsof t.com:
Hi All,
IFrame is a HtmlGenericControl name??
Where can i get this IFrame control at vs.net 2003?
Any example and guideline for IFRAME?

There is no Iframe control in VS.NET. You can create it with
HTMLGenericControl or output the code manually with a Literal Control.
--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
Horrible experience at Newmarket Volvo:
http://newmarketvolvo.tripod.com

Nov 19 '05 #4
thanks the respond...

"Nathan Sokalski" wrote:
An IFRAME is an HTML element whose content is determined by another file
(usually an html file, but any valid web page URL). The content of that URL
is displayed inside an inline frame, which is basically a rectangle (if you
want to, you can think of it as a single cell table that gets it's content
from another file). A page that give a good description and syntax of an
IFRAME can be found at:

http://www.devguru.com/Technologies/...ml_iframe.html

The only way to enter an IFRAME using Visual Studio .NET 2003 is to start
typing the tag and then select it from the list that is displayed (or type
the whole thing manually). Good Luck!
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Daniel" <Da****@discussions.microsoft.com> wrote in message
news:5D**********************************@microsof t.com...
Hi All,
IFrame is a HtmlGenericControl name??
Where can i get this IFrame control at vs.net 2003?
Any example and guideline for IFRAME?

Thank you.

Best regards,
Ocurnos.


Nov 19 '05 #5
Daniel:

Enter the tag manually in the HTML like this:

<iframe runat="server" id="frmSomeName" src="somefile.aspx"></iframe>

You can also add width and height. By putting the runat="server" and
id="..." attributes you will be able to manipulate the attributes in
server-side code. You would do that like this:

frmSomeName.Attributes["src"] = "someotherpage.htm";

You can access and manipulate any of the attributes that way.

John

-----Original Message-----
From: Daniel [mailto:Da****@discussions.microsoft.com]
Posted At: Tuesday, August 30, 2005 7:07 AM
Posted To: microsoft.public.dotnet.framework.aspnet
Conversation: what is IFrame
Subject: Re: what is IFrame
thanks the respond...

"Nathan Sokalski" wrote:
An IFRAME is an HTML element whose content is determined by another
file (usually an html file, but any valid web page URL). The content
of that URL is displayed inside an inline frame, which is basically a
rectangle (if you want to, you can think of it as a single cell table
that gets it's content from another file). A page that give a good
description and syntax of an IFRAME can be found at:

http://www.devguru.com/Technologies/...ml_iframe.html

The only way to enter an IFRAME using Visual Studio .NET 2003 is to
start typing the tag and then select it from the list that is
displayed (or type the whole thing manually). Good Luck!
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Daniel" <Da****@discussions.microsoft.com> wrote in message
news:5D**********************************@microsof t.com...
Hi All,
IFrame is a HtmlGenericControl name??
Where can i get this IFrame control at vs.net 2003?
Any example and guideline for IFRAME?

Thank you.

Best regards,
Ocurnos.



Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: maxim vexler | last post by:
I'm reading a lot of talks lately about the term iFrame and with your permission would like to ask a few question about that : - what is iFrame, i mean what is it good for ? - does all the...
2
by: Csaba2000 | last post by:
I want to be able to embed a single quote into an INPUT element within a dynamically generated IFRAME. The example below shows how the IFRAME is generated. Challenge: I'd like the alert box to...
4
by: Thomas | last post by:
Hi there, I have an iframe which is editable (designMode = "on") and want to resize it dynamically as the content grows (e.g. more lines of text is in there) and there the struggle starts. I...
2
by: Templar | last post by:
Hi i'm bothering with such problem... I must dynamic create an Iframe, and then put som raw HTML into it. But I can't. When I create iframe, I can't access its properties. Here's the coe...
7
by: Christopher J. Hahn | last post by:
I'm trying to use a script-generated form to submit to a script-generated iframe. The problem I'm running into is that the iframe is not assuming the name I assign it. IE6 on Win2000. FF1.0.2+...
17
by: Paul | last post by:
HI! I get an error with this code. <SCRIPT language="JavaScript"> If (ifp==""){ ifp="default.htm"} //--></SCRIPT> Basicly I want my iframe to have a default page if the user enters in...
9
by: Peter Jenkins | last post by:
I needed to implement a "page within a page" and rather than use frames (yecchh) decided to try using the object tag. Flung a test page together, tried it out in IE and Firefox on my PC, it...
0
by: tequilamala | last post by:
I have an Iframe in one of the pages i am developing... the iframe is suppose to scroll up and down and the links target the iframe. the problem is that the iframe scrolls side to side on internet...
4
by: Ty | last post by:
Hello all, I am creating a web site with Visual Stuido 2008. I am trying to use a java script file to create a busybox for login from this page http://blogs.crsw.com/mark/articles/642.aspx. I...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.