Hello Guys,
Is there way where I can create a HTML tags eg: table in a C# codebehind?
K
Printable View
Hello Guys,
Is there way where I can create a HTML tags eg: table in a C# codebehind?
K
Hello guys, any help?
Yes you can. Create an ASP.NET literal control in the markup page.
In the code behind
Code:string html = "<input type='submit' value='Click me' />";
literal1.Text = html;