09/05/01 17:53:56
>>146
<a href="test.html" id="anchor" runat="server" target="_blank">123</a>
でもいけるからね
お好きな方でドゾー
<form id="form1" runat="server">
<div>
<asp:HyperLink ID="HyperLink1" runat="server" Target="_blank">HyperLink</asp:HyperLink>
<a href="test.html" ID="Anchor1" runat="server" target="_blank">Anchor</a>
</div>
</form>
if (DateTime.Now.Month == 5)
{
this.HyperLink1.NavigateUrl = @"URLリンク(www.yahoo.co.jp)";
this.HyperLink1.Text = DateTime.Now.Month.ToString() + "月";
this.HyperLink1.Visible = true;
this.Anchor1.HRef = "URLリンク(www.yahoo.co.jp)";
this.Anchor1.InnerText = DateTime.Now.Month.ToString() + "月";
this.Anchor1.Visible = true;
}