Add the namespace for HtmlAnchor (using System.Web.UI.HtmlControls;),
protected void Page_Load(object sender, EventArgs e)
{
HtmlAnchor htmlanchor = new HtmlAnchor();
htmlanchor.HRef = "#";
htmlanchor.Title = "Welcome"; //tooltip
htmlanchor.InnerText = "Welcome";
this.form1.Controls.Add(htmlanchor);
}