Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If The title is confusing suggest to change it

What is the Best way to write my own HTML from code behind?

i currently use this :

<asp:Literal ID="ltr" runat="server"></asp:Literal>

and from code behind :

ltr.Text = "<p class=\"specific-class\"></p>";

is it a right to do something like this?

is there a better way to do this?

share|improve this question

2 Answers

up vote 3 down vote accepted

You can do it like that, but please don't. For the sake of your fellow developers in the past, present and the future, seperate your code from your design. Now, if you must write markup in code behind, that is most certainly a way to do it.

However, if all you want is to add a literal / span / textbox with a certain class you can do something like this instead:

( Given that you have a panel with runat="server" that is named "myPanel" )

myPanel.Controls.Add(new Label
                     { Text = "Hello!", CssClass = "specific-class" });
share|improve this answer
when i use your code i get this : System.Web.UI.WebControls.Literal' does not contain a definition for 'CssClass. and in my work i must write some <li> and <div> tag in some condition. how can i write those tag. – Raika Apr 4 '11 at 9:12
@Raika, updated, you need to use Label instead of Literal. You need to use something like this to create a div from code behind: var myDiv = new HtmlGenericControl("div"); – Filip Ekberg Apr 4 '11 at 9:32

You can try and use HtmlGenericControl. You can define the tag name of a html element. Find more about it here: http://msdn.microsoft.com/en-us/library/7512d0d0(v=vs.71).aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.