Write a program to change color of Label text control programmatically in Asp.Net.
Design: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="lboutput" runat="server" Text="Welcome in Code Solution "></asp:Label> <br /> <asp:Button ID="btnred" runat="server" Text="" BackColor="Red" onclick="btnred_Click" /> <asp:Button ID="btnblue" runat="server" Text="" BackColor="Blue" onclick="btnblue_Click" /> <asp:Button ID="btngreen" runat="server" Te...