How do I create an html report without hardcoding the html?

本秂侑毒 提交于 2019-12-21 04:26:09

问题


I'm currently refactoring a console application whose main responsibility is to generate a report based on values stored in the database.

The way I've been creating the report up til now is as follows:

const string format = "<tr><td>{0, 10}</td><td>
                       {1}</td><td>{2, 8}</td><td>{3}</td><td>{4, -30}</td>
                       <td>{5}</td><td>{6}</td></tr>";

if(items.Count > 0)
{
    builder.AppendLine(
        String.Format(format, "Date", "Id", "WorkItemId", 
                      "Account Number", "Name", "Address", "Description"));
}

foreach(Item item in items)
{
    builder.AppendLine(String.Format(format, item.StartDate, item.Id,
                       item.WorkItemId, item.AccountNumber, 
                       String.Format("{0} {1}", 
                                     item.FirstName, item.LastName), 
                       item.Address, item.Description));
}

string report = String.Format("<html><table border=\"1\">{0}
                                     </table></html>",
                              builder.ToString());

(The above is just a sample...and sorry about the formatting...I tried to format it so it wouldn't require horizontal scrolling....)

I really don't like that way I've done this. It works and does the job for now...but I just don't think it is maintainable...particularly if the report becomes any more complex in terms of the html that needs to be created. Worse still, other developers on my team are sure to copy and paste my code for their applications that generate an html report and are likely to create a horrible mess. (I've already seen such horrors produced! Imagine a report function that has hundreds of lines of hard coded sql to retrieve the details of the report...its enough to make a grown man cry!)

However, while I don't like this at all...I just can't think of a different way to do it.

Surely there must be a way to do this...I'm certain of it. Not too long ago I was doing the same thing when generating tables in aspx pages until someone kindly showed me that I can just bind the objects to a control and let .NET take care of the rendering. It turned horrible code, similar to the code above, into two or three elegant lines of goodness.

Does anyone know of a similar way of creating the html for this report without hard-coding the html?


回答1:


Make your app to produce XML file with raw data. Then apply an external XSLT to it which would contain HTML.

More info: http://msdn.microsoft.com/en-us/library/14689742.aspx




回答2:


You could use a template engine like NVelocity to separate your report view and your code. There are probably other decent template engines out there...




回答3:


meziod - Another avenue to peruse is extension methods to the HtmlTextWriter object. I found a brilliant stab at just this on this very site.

HtmlTextWriter extension

I'm certain that you could leverage great potential from that...

regards - coola




回答4:


Well, you could use one of the report frameworks (Crystal, MS RDL, etc) and export as html - however, I suspect that for simple data your current approach is less overhead. I might use an XmlWriter or LINQ-to-XML (rather than string.Format, which won't handle escaping)...

        new XElement("tr",
            new XElement("td", item.StartDate),
            new XElement("td", item.Id),
            new XElement("td", item.WorkItemId),

etc. Escaping is especially important for text values (name, description, etc).




回答5:


You might consider using a simple template engine such as http://www.stefansarstedt.com/templatemaschine.html and separate your template from the content.

This is quite practical, allows template modification without recompiling and you still got C# power in your templates.




回答6:


Microsoft SQL Reporting Services does this quite well, and can do multiple formats.

My company uses it to create PDF reports and since we have HIPAA requirements, we automatically put a password to it via a third party PDF control...




回答7:


As coolashaka already mentioned, using the HtmlTextWriter is a good option, certainly if you add some useful extension methods, for example:

Simple example:

public static void WriteNav(this
     HtmlTextWriter writer, List<String> navItems)
    {
        writer.RenderBeginTag("nav");
        writer.RenderBeginTag(HtmlTextWriterTag.Ul);
        foreach (var item in navItems)
        {
            writer.RenderBeginTag(HtmlTextWriterTag.Ul);
            writer.AddAttribute(HtmlTextWriterAttribute.Href, "~/" + item + ".html");
            writer.RenderBeginTag(HtmlTextWriterTag.A);
            writer.Write(item);
            writer.RenderEndTag();
            writer.RenderEndTag();
        }
        writer.RenderEndTag();
        writer.RenderEndTag();

    }

I know this is an old question, but Google will keep directing people here for years to come.



来源:https://stackoverflow.com/questions/695646/how-do-i-create-an-html-report-without-hardcoding-the-html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!