Insert Plain HTML Code in ASP.NET page
-
HiHo i need to insert Plain HTML Code into my ASP.NET WebForm... well: I got several objects like textbox, buttons and so on... but after that, at a specific location in the html-source i need to insert dynamically generated HTML-Source. Who of you can help me out mfG. Daniel Kirstenpfad
-
HiHo i need to insert Plain HTML Code into my ASP.NET WebForm... well: I got several objects like textbox, buttons and so on... but after that, at a specific location in the html-source i need to insert dynamically generated HTML-Source. Who of you can help me out mfG. Daniel Kirstenpfad
-
You can use <asp:placeholder id="myPlaceHolder" runat="server" /> Then in your code (C# here): myPlaceHolder.Controls.Add(new LiteralControl("<b>Dynamic Stuff</b>")); --
If it starts to make sense, you're in a cult.Thanks mate... that did exactly what i was looking for... at least the literal control does not show up in the toolbox... even not in vs2003 mfG. Daniel Kirstenpfad
-
Thanks mate... that did exactly what i was looking for... at least the literal control does not show up in the toolbox... even not in vs2003 mfG. Daniel Kirstenpfad