HTML Controls ASP.Net Tutorial

<%@ Page Language="C#" AutoEventWireup="true"%>
 
    void buttonSet_Click(object sender, EventArgs e)
    {
        Header.Title = Msg.Text;
    }
    void buttonMetaSet_Click(object sender, EventArgs e)
    {
        string format = "";
        LiteralControl equiv;
        equiv = new LiteralControl(String.Format(format, Content.Text));
        ((Control)Header).Controls.Add(equiv);
        Response.Write("This text will disappear in 3 seconds...");
    }



    Testing HtmlHead


    
        
            

Set the title


            
                                    onclick="buttonSet_Click" />
            
            

Set HTTP-EQUIV tag


            
                                    onclick="buttonMetaSet_Click" />