How to change iframe src ?

  • Thread starter Thread starter Atilla
  • Start date Start date
A

Atilla

<iframe
id="fband"
name="fband"
--> src="band.aspx?S=Other"
width="100%"
height="300"
scrolling="auto"
frameborder="0">
</iframe>

How to change iframe by using VS 2008 C# ?
 
First of all set for the iframe runat="server".

Then you can get it on server side as
HtmlGenericControl myFrame = this.FindControl("fband") as
HtmlGenericControl;

Then you can set its attributes:
myFrame.Attributes["src"]="...";

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
 
Back
Top