Drucken

Logo Bodoconsult EDV-Dienstleistungen GmbH

Bodoconsult.Core.Web.Html

Autor: Bodoconsult EDV-Dienstleistungen GmbH, Robert Leisner

Nuget package

https://www.nuget.org/packages/Bodoconsult.Core.Web.Html/

Github repository

https://github.com/RobertLeisner/Bodoconsult.Core.Web.Html

About the library Bodoconsult.Core.Web.Html

What does the library

Bodoconsult.Core.Web.Html

How to use the library

The source code contain NUnit test classes, the following source code is extracted from. The samples below show the most helpful use cases for the library.

Create a simple HTML table

        var table = new Table();
        table.Attributes.Add("class","cssTableClass");

        // Header
        var headerrow = new TableRow(table);
        headerrow.Attributes.Add("class","cssHeaderRowClass" );
        ITableCell cell = new TableHeaderCell(headerrow) { Text = "Header1" };
        cell.Attributes.Add("class", "cssHeaderCellClass" );
        cell = new TableHeaderCell(headerrow) { Text = "Header2" };

        // Content
        var contentrow = new TableRow(table);
        cell = new TableCell(contentrow) { Text = "Content1" };
        cell.Attributes.Add("class", "cssContentCellClass" );
        cell = new TableCell(contentrow) { Text = "Content2" };


        // Act
        var s = table.RenderIt();

Create an advanced HTML table

        var styleSheet = new Stylesheet();
        styleSheet.CssClassTable("cssTableClass");
        styleSheet.CssClassTrHeader("cssHeaderRowClass");
        styleSheet.CssClassTh("cssHeaderCellClass");
        styleSheet.CssClassTrBody("cssBodyRowClass");
        styleSheet.CssClassTd("cssContentCellClass");


        // Arrange
        var table = new Table {Stylesheet = styleSheet};

        // Header
        var headerrow = new TableRow(table);
        ITableCell cell = new TableHeaderCell(headerrow) { Text = "Header1" };
        cell = new TableHeaderCell(headerrow) { Text = "Header2" };

        // Content
        var contentrow = new TableRow(table);
        cell = new TableCell(contentrow) { Text = "Content1" };
        cell = new TableCell(contentrow) { Text = "Content2" };


        // Act
        var s = table.RenderIt();

Create a HTML table from a System.Data.DataTable

        var dt = TestHelper.GetDataTable("LineChart.xml");
        var erg = TableFormatter.FormatAsHtml(dt, true);

About us

Bodoconsult (http://www.bodoconsult.de) is a Munich based software company from Germany.

Robert Leisner is senior software developer at Bodoconsult. See his profile on http://www.bodoconsult.de/Curriculum_vitae_Robert_Leisner.pdf.

Licence for the library Bodoconsult.Core.Web.Html

The MIT License (MIT) for Bodoconsult.Core.Typography

Copyright (c) 2015 - 2020 Bodoconsult EDV-Dienstleistungen GmbH, Vaterstetten (Germany)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

 

Drucken