N
Night Air
I'm trying to put an image tag inside of an anchor tag that I plan to
dynamically add to a place holder tag.
The trouble is, though, that the "<" character is showing as "<" and the
">" as ">". Is there a way to get these show correctly on the html page?
Thanks in advance!
C# Code
System.Web.UI.HtmlControls.HtmlAnchor hMenuHome = new HtmlAnchor();
hMenuHome.ID = "hMenuHome";
hMenuHome.HRef = "default.aspx";
hMenuHome.InnerText = Server.HtmlDecode("<") + "img name=\"n_home\"
src=\"images/n_home.gif\" width=\"202\" height=\"50\" border=\"0\"
id=\"n_home\" alt=\"Home\" /" + Server.HtmlDecode(">");
hMenuHome.Attributes["onMouseOut"] = "MM_swapImgRestore();";
hMenuHome.Attributes["onMouseOver"] =
"MM_swapImage('n_home','','images/n_home_f2.gif',1);";
phMenuHome.Controls.Add (hMenuHome);
Resulting Html Code
<a href="default.aspx" id="hMenuHome" onMouseOut="MM_swapImgRestore();"
onMouseOver="MM_swapImage('n_home','','images/n_home_f2.gif',1);"><img
name="n_home" src="images/n_home.gif"
width="202" height="50" border="0"
id="n_home" alt="Home" /></a>
dynamically add to a place holder tag.
The trouble is, though, that the "<" character is showing as "<" and the
">" as ">". Is there a way to get these show correctly on the html page?
Thanks in advance!
C# Code
System.Web.UI.HtmlControls.HtmlAnchor hMenuHome = new HtmlAnchor();
hMenuHome.ID = "hMenuHome";
hMenuHome.HRef = "default.aspx";
hMenuHome.InnerText = Server.HtmlDecode("<") + "img name=\"n_home\"
src=\"images/n_home.gif\" width=\"202\" height=\"50\" border=\"0\"
id=\"n_home\" alt=\"Home\" /" + Server.HtmlDecode(">");
hMenuHome.Attributes["onMouseOut"] = "MM_swapImgRestore();";
hMenuHome.Attributes["onMouseOver"] =
"MM_swapImage('n_home','','images/n_home_f2.gif',1);";
phMenuHome.Controls.Add (hMenuHome);
Resulting Html Code
<a href="default.aspx" id="hMenuHome" onMouseOut="MM_swapImgRestore();"
onMouseOver="MM_swapImage('n_home','','images/n_home_f2.gif',1);"><img
name="n_home" src="images/n_home.gif"
width="202" height="50" border="0"
id="n_home" alt="Home" /></a>