English

Merge HTML Template with XML or JSON in Java

In modern web development, the separation of content and presentation is a fundamental principle. HTML templates provide a convenient way to define the structure and layout of web pages, while JSON and XML data formats are commonly used to store and transmit structured information. Combining these technologies allows developers to dynamically generate HTML content based on data from external sources. In this blog post, we will explore how to merge HTML templates with JSON or XML data in Java.
July 3, 2023 · 3 min · Farhan Raza

Merge HTML Template with XML in C#

HTML forms can be used to collect information from multiple sources. The collected information may be stored or serialized in a database which can later be extracted as XML format data. In certain cases, you may need to merge HTML template with XML data. Following such cases, this article explains how to merge HTML templates with XML data programmatically in C#.
October 5, 2022 · 2 min · Farhan Raza

Merge HTML Template with JSON in C#

HTML templates are used to collect data from different data sources. After merging the data with the template, you can create HTML documents. In some scenarios, the input data for merging with template file may exist in JSON format. In accordance with such use cases, this article covers how to merge HTML templates with JSON format data programmatically in C#.
October 5, 2022 · 2 min · Farhan Raza