Change properties of Web page controls in ASPX.CS

In ASPX.CS

System.Web.UI.HtmlControls.HtmlImage IMG  = (System.Web.UI.HtmlControls.HtmlImage)Page.FindControl("IMG1");
    IMG.Attributes.Add("src", "image/TopPic1.gif");

In ASPX

<img src="image/TopPic.gif" border="0" runat="server" width="630" height="79" usemap="#Navigation"
      id="IMG1" name="IMG1">

posted on 2005-10-24 11:41  cy163  阅读(164)  评论(0编辑  收藏  举报

导航