vote up 0 vote down star

I have code like this. Is there a way to make it easier to write and maintain? Using C# .NET 3.5

string header(string title)
{
    StringWriter s = new StringWriter();
    s.WriteLine("{0}","<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">");
    s.WriteLine("{0}", "<html>");
    s.WriteLine("<title>{0}</title>", title);
    s.WriteLine("{0}","<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">");
    s.WriteLine("{0}", "</head>");
    s.WriteLine("{0}", "<body>");
    s.WriteLine("{0}", "");
}
flag

38% accept rate
6  
It's good that you relize this is a bad way to make an html file using a program. – Lucas McCoy Jun 17 at 2:26
duplicate: stackoverflow.com/questions/937201 stackoverflow.com/questions/897226 stackoverflow.com/questions/340095 stackoverflow.com/questions/346449 – Mauricio Scheffer Jun 17 at 3:32

11 Answers

vote up 12 vote down

You're probably better off using an HtmlTextWriter or an XMLWriter than a plain StringWriter. They will take care of escaping for you, as well as making sure the document is well-formed.

This page shows the basics of using the HtmlTextWriter class.

link|flag
vote up 11 vote down

When I deal with this problem in other languages I go for a separation of code and HTML. Something like:

1.) Create a HTML template. use [varname] placeholders to mark replaced/inserted content.
2.) Fill your template variables from an array or structure/mapping/dictionary

Write( FillTemplate(myHTMLTemplate, myVariables) ) # pseudo-code
link|flag
can i get a link to an example of how to make a HTML template? in whatever language? (i can deal with non C# is its .NET) – acidzombie24 Jun 17 at 2:44
There are existing template engines that may help make this easier. See wikipedia for a list: en.wikipedia.org/wiki/Template_engine_(web) – iammichael Jun 17 at 2:59
The Parser class in here is simple/easy to use: codeproject.com/KB/dotnet/… – russau Jun 17 at 3:15
vote up 4 vote down

I know you asked about C#, but if you're willing to use any .Net language then I highly recommend Visual Basic for this exact problem. Visual Basic has a feature called XML Literals that will allow you to write code like this.

Module Module1

    Sub Main()

        Dim myTitle = "Hello HTML"
        Dim myHTML = <html>
                         <head>
                             <title><%= myTitle %></title>
                         </head>
                         <body>
                             <h1>Welcome</h1>
                             <table>
                                 <tr><th>ID</th><th>Name</th></tr>
                                 <tr><td>1</td><td>CouldBeAVariable</td></tr>
                             </table>
                         </body>
                     </html>

        Console.WriteLine(myHTML)
    End Sub

End Module

This allows you to write straight HTML with expression holes in the old ASP style and makes your code super readable. Unfortunately this feature is not in C#, but you could write a single module in VB and add it as a reference to your C# project.

Writing in Visual Studio also allows proper indentation for most XML Literals and expression wholes. Indentation for the expression holes is better in VS2010.

link|flag
I totally forgot about that. Good call. – Josh Einstein Jun 17 at 3:12
I never write anything that has to do with XML or HTML in C# anymore. VB is just a great language for interfacing with web SOAP/REST Apis – Jim Wallace Jun 17 at 3:14
vote up 3 vote down
return string.Format(@"<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.01//EN""      ""http://www.w3.org/TR/html4/strict.dtd"">
<html>
<title>{0}</title>
<link rel=""stylesheet"" type=""text/css"" href=""style.css"">
</head>
<body>
", title);
link|flag
2  
Depending on where title came from, you probably want to HTML-encode title before blindly inserting it into a string. – Jacob Jun 17 at 2:31
would that keep newlines? – acidzombie24 Jun 17 at 2:43
vote up 3 vote down

The most straight forward way is to use an XmlWriter object. This can be used to produce valid HTML and will take care of all of the nasty escape sequences for you.

link|flag
vote up 0 vote down

You could write your own classes with its Render method, and another attributes, to avoid a great mess if you use it a lot, and then use the HTMLWriter or the xmlwriter as well. This logic is used in the asp.net pages, you can inherit from webControl and override the render method, wich is great if you are developing server-side controls.
This could be a good example.

Regards

link|flag
vote up 0 vote down

It really depends what you are going for, and specifically, what kind of performance you really need to offer.

I've seen admirable solutions for strongly-typed HTML development (complete control models, be it ASP.NET Web Controls, or similar to it) that just add amazing complexity to a project. In other situations, it is perfect.

In order of preference in the C# world,

  • ASP.NET Web Controls
  • ASP.NET primitives and HTML controls
  • XmlWriter and/or HtmlWriter
  • If doing Silverlight development with HTML interoperability, consider something strongly typed like link text
  • StringBuilder and other super primitives
link|flag
vote up 0 vote down

You could use System.Xml.Linq objects. They were totally redesigned from the old System.Xml days which made constructing XML from scratch a nut-searing pain.

Other than the doctype I guess, you could easily do something like:

var html = new XElement("html",
    new XElement("head",
        new XElement("title", "My Page")
    ),
    new XElement("body",
        "this is some text"
    )
);
link|flag
vote up 0 vote down

If you're looking to create an HTML document similar to how you would create an XML document in C#, you could try Microsoft's open source library, the Html Agility Pack.

It provides an HtmlDocument object that has a very similar API to the System.Xml.XmlDocument class.

link|flag
Html Agility Pack was not written by Microsoft. – Mauricio Scheffer Jun 17 at 3:28
It probably wasn't officially sponsored by Microsoft, but at the very least it was written by a Microsoft employee, or at least someone with an @microsoft.com email address... – Dan Herbert Jun 17 at 11:47
Yup, it was written by Simon Mourier who at that time was working at Microsoft... I wouldn't call it "Microsoft's open source library" though. – Mauricio Scheffer Jun 18 at 17:16
vote up 0 vote down

This is not a generic solution, however, if your pupose is to have or maintain email templates then System.Web has a built-in class called MailDefinition. This class is used by the ASP.NET membership controls to create HTML emails.

Does the same kind of 'string replace' things as mentioned above, but packs it all into a MailMessage for you.

Here is an example from MSDN:

ListDictionary replacements = new ListDictionary();
replacements.Add("<%To%>",sourceTo.Text);
replacements.Add("<%From%>", md.From);
System.Net.Mail.MailMessage fileMsg;
fileMsg = md.CreateMailMessage(toAddresses, replacements, emailTemplate, this); 
return fileMsg;
link|flag
vote up 0 vote down

You can use ASP.NET to generate your HTML outside the context of web pages. Here's an article that shows how it can be done.

link|flag
1  
It could be used to generate an HTML email or something else that isn't a website. Also, this isn't an answer. – llamaoo7 Jun 17 at 2:34
1  
You can use ASP.NET to output HTML outside the context of a web site. – Jacob Jun 17 at 2:40
I wouldnt go as far as downvoting this, as its a valid question, but it shoud have been a comment to the OP instead of an aswer – Neil N Jun 17 at 2:44
1  
Jacob is correct... you can use the ASP.NET rendering engine... though there is obviously more to it than just saying you can use it. – Bryan Sebastian Jun 17 at 2:45
i didnt up or down vote this but how would i use the rendering engine? link to a page of any example would be fine. – acidzombie24 Jun 17 at 2:47

Your Answer

Get an OpenID
or

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