I need to make an object from code behind..something like button
For Example like this
Label1.Text = "<asp:Button id=""Button1"" Text=""Test"" runat=""server"""
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server"></asp:Label>
</div>
</form>
</body>
When I run this code, The Button not appear
Go to the complete details ...