C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (5)
Syed Shanu(4)
Anupam Maiti(3)
Sibeesh Venu(3)
Saurav Kumar(2)
Yogeshkumar Hadiya(2)
Venkatasubbarao Polisetty(2)
Vinay Ayinapurapu(2)
Sanjay Makwana(2)
Asma Khalid(2)
Ecco Suprastyo(2)
Dhruvin Shah(2)
Prashant Bansal(2)
Gowtham K(2)
Sandeep Kumar(2)
Nilesh Jadav(2)
Debendra Dash(2)
Saad Mahmood(2)
Riya Patel(1)
Aarav Patel(1)
Sandhiya Priya(1)
Nidhi Sharma(1)
Ajay Narkhedkar(1)
Sreeparna Sreejay(1)
Kripanshu Kumar(1)
Mehdi Rezaie(1)
Vinoth Xavier(1)
Devesh Omar(1)
Jignesh Kumar(1)
Deepak Rawat(1)
Shilpa Tanwar(1)
Keyur Pandya(1)
Nikunj Satasiya(1)
Debabrata Ghosh(1)
Ziggy Rafiq(1)
Bhargav Vachhani(1)
Ziauddin Choudhary(1)
Mukesh Nailwal(1)
Priyanshu Agnihotri(1)
Mansi Rana(1)
Esmael Esmaeli(1)
Tural Suleymani(1)
Uday Dodiya(1)
Deepak Kumar(1)
Jeetendra Gund(1)
Željko Perić(1)
Prakash Kumar(1)
Joydip Kanjilal(1)
Vaibhav Chauhan(1)
Ashish Bhatnagar(1)
Abhishek Yadav(1)
Manoj Mittal(1)
Ram Prasad M(1)
Sagar Pardeshi(1)
Alexej Sommer(1)
Jayakumar Balasubramaniam(1)
Anbu Mani(1)
Guest User(1)
Chris Love(1)
Altaf Ansari(1)
Fiyaz Hasan(1)
Jignesh Trivedi(1)
Vijayaragavan S(1)
Akshay Phadke(1)
Atul Rawat(1)
Ashish Aphale(1)
Sachin Kalia(1)
Staff Writer(1)
Vinoth Rajendran(1)
Sandeep Mittal(1)
Priyaranjan K S(1)
Rahul Suryawanshi(1)
Rahul Prajapat(1)
Mozart He(1)
Sam Hobbs(1)
Resources
No resource found
API Versioning in ASP.NET Core: Best Practices and Common Mistakes
Jun 05, 2026.
Learn API Versioning in ASP.NET Core with practical examples. Explore versioning strategies, best practices, common mistakes, and implementation techniques.
Clickjacking Attacks Explained and How to Prevent Them
Jun 03, 2026.
Learn what Clickjacking attacks are, how they work, and how to prevent them using X-Frame-Options, Content Security Policy, and web security best practices.
How to implement API versioning using URL, header, and query string in ASP.NET Core?
Apr 22, 2026.
Master API versioning in ASP.NET Core! Learn to implement URL, query string, and header versioning for backward compatibility and seamless API evolution. Keep your apps stable!
What is HTTP/2 and how is it different from HTTP/1.1?
Apr 22, 2026.
Discover HTTP/2's advantages over HTTP/1.1 for faster websites. Learn about multiplexing, header compression, server push, and how it boosts SEO and user experience.
Understanding the Difference Between header jQuery blur() and textbox onblur
Feb 24, 2026.
Explore the nuances of jQuery's blur() method versus HTML's onblur attribute for handling focus loss events. Understand syntax, use cases, and performance differences to optimize web development workflows. Choose the best approach for form validation and UI updates.
How to Fix “Request Header Too Large” Error in Web Servers
Jan 29, 2026.
Fix the "Request Header Too Large" error! Learn why it happens (cookies, tokens, redirects) & how to solve it: clear cache, reduce cookies, adjust server limits.
Fixing OpenAPI Transform for Scalar to Add a Global JWT Auth Header in .NET 10
Dec 27, 2025.
Fix .NET 10 OpenAPI transform for Scalar UI to add a global JWT auth header. Resolve breaking changes from .NET 9, ensuring seamless JWT authentication.
6 Types of Filters in ASP.NET Core – Complete Guide (With Examples & Use Cases)
Nov 23, 2025.
This article provides a complete and detailed explanation of the 6 types of Filters in ASP.NET Core, including Authorization, Resource, Action, Endpoint, Exception, and Result Filters. Each filter type is described in a clear and practical way with syntax examples, real project scenarios, and line-by-line breakdowns to help learners understand how filters work in the MVC and Web API pipeline. This guide is ideal for developers, students, and professionals preparing for .NET interviews or working on enterprise-level ASP.NET Core applications.
Security Headers Every ASP.NET Core App Should Have
Sep 12, 2025.
This article provides a comprehensive guide to protecting against XSS, clickjacking, and other common web vulnerabilities. Learn how to implement HSTS, CSP, X-Frame-Options, and more with practical code examples and best practices. Boost your app's security rating and safeguard user data with these easy-to-implement security measures, including middleware implementation and testing strategies.
Fetch Column Headers from Excel Files in a Folder using Power Automate
Aug 15, 2025.
In this article its mainly focus on extracting the column header names from multiple excel sheet stored in a folder using Power Automate.
🧾 Creating Custom Middleware in ASP.NET Core – The Complete Guide with Real Examples
Jul 29, 2025.
ASP.NET Core is known for its modular pipeline, where middleware components play a critical role in handling HTTP requests and responses. Middleware can perform a variety of tasks such as request logging, authentication, routing, response modification, error handling, and more.
Hide Column Headers and Show Row Headers in C#
Jul 08, 2025.
Learn how to display DataGridView data horizontally in a WinForms application. This article shows you how to set up row headers, add columns, and rotate data display programmatically.
Converting HTML to PDF or Image in C# Using wkhtmltopdf Part 2 - Header & Footer
Nov 13, 2024.
In this tutorial, learn how to convert HTML to PDF or image in C# using wkhtmltopdf. This part covers adding and customizing headers and footers in your generated PDFs, enhancing document structure and appearance.
Customizing HTTP Headers with Middleware in ASP.NET Core
Oct 12, 2024.
In this article, we explore how to modify HttpResponse using custom middleware in ASP.NET Core. We create a custom middleware that injects headers into the response. By adding conditions, specific APIs can have unique headers.
Understanding Model Binding in ASP.NET Core with .NET 8
Sep 17, 2024.
Model binding in .NET Core simplifies the process of mapping HTTP request data to action method parameters. It automatically extracts data from various sources like query strings, form submissions, route parameters, HTTP headers, and request bodies, making it easier to handle client-server interactions efficiently.
Tailwind CSS Header and Seamlessly Integrating It with ReactJS
Aug 30, 2024.
Tailwind CSS is a utility-first CSS framework that enables rapid UI development with minimal custom CSS. It provides a wide array of predefined classes, allowing developers to style directly in their HTML. Tailwind is highly customizable, supports responsive design, and offers performance optimization features.
How to Create Custom Middleware in Next.js
Aug 05, 2024.
In Next.js, middleware allows you to run code before a request completes, useful for tasks like authentication, logging, and redirection. Introduced in version 12, it can be applied globally or to specific routes.
Creating a Host-Named Web Application in SharePoint
Aug 02, 2024.
To create a host-named web application, first configure a DNS entry with the desired host name. Log in to your Active Directory server to create an A Host record pointing to your web server. In SharePoint Central Administration, set up a new web application with the host name in the Host Header field.
Encrypting Header & Request Body Parameters in .NET Core Web API
Jul 24, 2024.
In this article, we'll explore how to encrypt header and request body parameters in a .NET Core Web API to prevent them from being readable in the page source or by network sniffing tools. We'll use an example application developed by "Nikunj Satasiya" to illustrate the process.
How to Remove Extra Column from DataGrid WPF Control
May 31, 2024.
The WPF DataGrid often displays an extra column due to default behavior. This issue arises when the source data contains fewer columns than displayed. By adjusting the XAML code and setting the ColumnWidth attribute to "*", the extra column can be removed, ensuring proper alignment of data in the DataGrid.
Handling CORS (Cross-Origin Resource Sharing) in ASP.NET Core Web API
Jan 15, 2024.
Demystify CORS in ASP.NET Core! Learn how to seamlessly handle Cross-Origin Resource Sharing and overcome origin-related errors in your Web API with this concise guide.
Using HTML5, CSS3, and JavaScript to their full potential
Dec 28, 2023.
Crafting dynamic and engaging web journeys: HTML5, the cornerstone of web architecture, has evolved to embrace semantic elements such as <header>, <nav>, <section>, <article>, and <footer>. Replacing generic <div> tags, these elements imbue meaning and enhance accessibility. - Ziggy Rafiq
Implementing Content Negotiation for Flexible Data Formats
Aug 16, 2023.
Content negotiation in ASP.NET Core is crucial for serving different data formats like JSON, XML, etc., based on the client's preferences. Here's a complete example of how to implement content negotiation in an ASP.NET Core Web API:
Resolving CORS Origin Using Custom Middle ware in ASP.Net Web API
Aug 01, 2023.
In ASP.NET Core, middleware is a component or piece of software that sits in the request-response pipeline. Middleware is used to handle or modify incoming HTTP requests and outgoing HTTP responses. It provides a way to add custom logic and behaviors to the application's processing flow.
What is Response Caching in ASP.NET Core?
Jul 11, 2023.
Accessing information efficiently needs responsive caching. The blog discusses how response caching in ASP.NET is used to increase that accessibility.
ASP.Net GridView With Fixed Header
Jul 05, 2023.
Grid view using bootstrap JavaScript with fixed header.
Custom JWT Handler In ASP.Net Core 7 Web API
May 26, 2023.
In ASP.NET Core Web API, you can create a custom JWT (JSON Web Token) handler to handle token authentication and authorization. The custom handler lets you define your logic for validating and processing JWT tokens.
How to Add Security Headers to Your Website Using .htaccess
May 18, 2023.
Want to know how to add security headers to your website using .htaccess? Read this blog and add content security policy header in wordpress site.
What Is Semantic HTML? And Why It Matters
May 03, 2023.
Semantic HTML is the practice of using HTML markup to convey the meaning or purpose of the content on a web page, rather than just its visual appearance.
5 HTTP Security Headers You Should Know For SEO
May 02, 2023.
Being an SEO beginner, it's easy to overlook the security headers in the regular audits. However, security headers should be your top priority when it comes to optimizing your website. In this article, we'll discuss five HTTP security headers that you should know for SEO.
Implementing A Proxy Server In C# - An Example And Test Case
Dec 09, 2022.
In this tutorial, we provide an example of how to create a simple proxy server in a C# application using the HttpListener class. We also show how to write a test case to verify that the proxy server works as expected.
Consuming Apache Axis Service In .NET Core
Aug 09, 2022.
In this article, you will learn how to consume Apache Axis in .NET core.
Filtering In Datagridview In Vb.Net And Also In C#
Aug 02, 2022.
Filtering In Datagridview In Vb.Net and also In C#. When you type in textbox based on in gridview, data will be filtered and also highlighted.
Get Header Values With Webresource In Dynamics CRM
Jun 08, 2022.
In Dynamics 365 CRM, for certain requirements we need to get header values that are present in a record. We can get values with form context. As an example, on contact record form context was used to retrieve value of owner.
Developing A String Type In C
Jun 02, 2022.
You may have noticed that unlike other programming languages such as Java, Python, etc. C does not support string as a primitive (or we can say intrinsic) data type. Strings in C are implemented and manipulated by using character arrays. A string is a sequence of characters that is terminated by a null character.
How To Know The Version Of SharePoint
May 22, 2022.
This article explains how to determine the version of your SharePoint site using two methods. The first method involves accessing the host header URL and appending ‘/_vti_pvt/service.cnf’. The second method utilizes developer tools in browsers like Chrome or Edge to check the response headers of resource files.
Learn Postman Step By Step - Preset Headers
Apr 27, 2022.
In this step-by-step article series next, we are going to learn about the Preset Headers features of the postman.
How To Wrap Words In DataGridView Cell
Apr 26, 2022.
This article explains how to wrap words inside data grid view cell, and change cell height while typing in text.
How To Use Multiple Code Files (Custom Headers And Source) In C++
Apr 13, 2022.
In this article, you will learn how to use custom Headers and Source Files to organize your code.
Show And Hide Form Header With Webresource In Dynamics CRM
Mar 30, 2022.
In Dynamics 365 CRM, at times we must show or hide form header,header command bar,header body,Header tab navigator for a selected entity. This can be achieved by using client API Reference. As an example, contact record was taken to show this functionality.
Save Request And Response Headers In ASP.NET 5 Core
Sep 30, 2021.
In a typical request-response cycle, the request and response headers contain a lot of additional information. This article talks about how to retrieve them and store it in a database. In this article, we’ll use PostgreSQL as the database and connect to it using dotConnect for PostgreSQL.
Web Security Vulnerabilities On Clickjacking And Security HTTP Headers And Information Leakage
Jul 07, 2021.
In this article, you will learn about the common web security vulnerabilities with Remediation Technique.
How To Create Header And Footer In Modern SharePoint Site
Jul 02, 2021.
in this article we learn how can we create header and footer in modern SharePoint sites using SPFx Application Customizer.
Create Extension With SharePoint Framework(SPFx)
Jun 25, 2021.
This article describe how to create custom header using SPFx extension.
Adding Header To SharePoint List Form
Apr 10, 2021.
This is part 2 series of Customizing SharePoint List Forms Using JSON.
How To Create Blank Page Without Header And Title In SharePoint Online
Apr 03, 2021.
In this article, we will learn how can we create a page without a header and title in SharePoint online.
The Use Of DataGridView Class In .NET
Mar 27, 2021.
In this article, you will learn about the use of DataGridView class in .NET.
How To Read Tabular Data From CSV Files In R
Dec 16, 2020.
Learn how to import and manage CSV data in R. Discover the read.csv function for reading tabular data with and without headers. Explore the structure of the imported data frame. Additionally, understand the usage of read.table for data import and get insights into managing data headers and contents effectively.
CRUD Operation In C# Windows Application Using Store Procedure
Nov 16, 2020.
This guide explores implementing CRUD operations in a C# Windows Forms application using stored procedures. Learn to connect to SQL Server, execute stored procedures, and handle data efficiently.
Protect APIs With Security Headers Using Azure API Management Policies
Aug 24, 2020.
In this article, you will learn about how to protect APIs with Security Headers using Azure API Management Policies.
Secure Web Application Using HTTP Security Headers In ASP.NET Core
Aug 17, 2020.
In this article, you will learn about Secure Web Application using HTTP Security Headers in ASP.NET Core.
C#.NET - Access OAuth REST Web API Method
Apr 09, 2020.
C#.NET applications can access OAuth-protected REST APIs. You'll obtain an access token through OAuth flow (often via a separate request) and include it in the authorization header of your HttpClient calls.
Power Apps - Build Search and Sort by Column Header
Apr 07, 2020.
In this article, you will learn how to build a power app solution with search and sort by column header.
C# Export to Excel from Datagridview
Feb 25, 2020.
In this article, you will learn about a C# export to Excel from datagridview.
Load Datagridview from a Database in C#
Feb 20, 2020.
In this article, you will learn how to load Datagridview from database in C#.
Toggling SharePoint Modern Site Header Using SharePoint Framework (SPFx) Application Customizer
Sep 20, 2019.
In this article, you will learn about toggling SharePoint Modern Site Header using SharePoint Framework (SPFx) application customizer.
SharePoint Modern Communication Site No Code Feature For Header, Footer And Navigation
Aug 19, 2019.
In this article, you will learn about the No Code feature of SharePoint Modern Communication Site for Header, Footer, and Navigation.
Dynamically Change Visual Title In Power BI
Jun 18, 2019.
In this article, we will learn how we can easily change the visualization title dynamically. With the Power BI Desktop update, this feature is now available to easily change the title of any visualization within the Power BI.
How To Create A Header In PowerApps Blank Gallery - PowerApps Grid View
Jun 10, 2019.
In this article, we will learn how we can easily create a Header in the PowerApps Grid view. This article is very useful for the readers who are new to learn PowerApps. Learn the PowerApps Step by Step in all my PowerApps articles.
ASP.NET Core Security Headers
Apr 16, 2019.
In this article, you will learn about ASP.NET Core security headers.
Resolving "Access-Control-Allow-Origin Header Not Present" Error In Angular .NET Core API Calls
Jun 01, 2018.
Angular 4 is great and comes loaded with more features. You might be wondering why Angular 3 was skipped. They made it this way to unify all Angular components with the Angular Router (already developed up to version 3) which had to be upgraded to v4. So, Angular 4 was the chosen name to mean the entire Angular Framework.
Xamarin.Forms - ListView Header And Footer Template
Apr 02, 2018.
In this article, you will learn Header Template List view in Xamarin. Forms Application. The Most of list view not have in Header templates. But if we are using more lists that time we can use this header template to display the content for Header template. So in this article we can Header , footer template and List View Items.
Using CSP Header In ASP.NET Core 2.0
Jan 15, 2018.
Content Security Policy (CSP) is an additional level of security that could help prevent Cross Site Scripting (XSS) attacks. In these attacks malicious scripts are executed on user’s browser since browser doesn’t know whether the source of the script is trustworthy or not.
A Web Performance Audit Of C# Corner
Dec 29, 2017.
A recent article on C# Corner brought the attention to performance issues due to legacy hardware that was causing the site not to scale well to meet its growing demand.
Dynamic Search In DataGridView
Nov 30, 2017.
This article will help you to understand the Dynamic Search method in DataGridView in C#.Dynamic searching in a DataGridView involves implementing a feature where users can search for specific data within the DataGridView in real-time, and the DataGridView updates to show only the rows that match the search criteria. This is commonly used to quickly filter and find specific information within large datasets displayed in a DataGridView control in a Windows Forms application.
Cache Headers For MVC File Action Result (ASP.NET Core 2.0 Preview 2)
Jul 25, 2017.
I’m pretty sure that you are familiar with StaticFiles middleware of the framework. All it does is serve static files (CSS, JavaScript, image, etc.) from a predefined/configurable file location (typically from inside the web root, i.e., wwwroot folder). But along the way, it also does some cache headers configuration. The reason behind this is you don’t want your server to be called up every time for a file that doesn’t change frequently. Let’s see how a request for a static file looks in the browser’s network tab.
SharePoint 2016/2013 Administration - How To Create Host Header Web Applications
May 04, 2017.
In this article we will look for the Steps to create Web Applications with Host Headers.
SharePoint 2016/2013 Administration - How To Create Host Header Site Collections
May 04, 2017.
In this article, we will look into the steps to create host header based Site Collections.
Multi Column Header In Kendo Grid Using ASP.NET WEB API And Entity Framework
Mar 29, 2017.
From this article, you will learn how to implement the multi column header in Kendo Grid, using ASP.NET WEB API and Entity Framework.
The Select All Check Box Header Template In Kendo Grid Using ASP.NET WEB API And Entity Framework
Mar 22, 2017.
In this article, you will learn how to implement the select all check box header template in Kendo Grid, using ASP.NET and Entity framework .
Response Caching In ASP.NET Core
Jan 09, 2017.
Response Caching in ASP.NET Core enhances web application performance by strategically managing how responses are cached and delivered to clients and proxies. It leverages the Cache-Control header to specify caching directives such as Public, Private, No-cache, and others.
Fading Header In List View Using UWP With XAML And C#
Oct 12, 2016.
In this article, you will learn how to fade a ListView header, when the user scrolls in Universal Windows apps development with XAML and Visual C#.
Sorting Rows By Table Header In AngularJS
Jul 24, 2016.
Learn how to implement bidirectional data sorting in AngularJS using table headers. Utilize ng-click and ng-class directives for interactive sorting indicators. Employ orderBy filter for sorting data dynamically. CSS styling enhances UI for sorting indicators.
How To Create Multirow Header In GridView Using ASP.NET
Jun 14, 2016.
In this article, you will learn how to create a multirow header in grid view using ASP.NET.
MVC Application Security Issues: Software Information & Header Sensitive Data - Part Two
May 24, 2016.
In this article, we will go one step up and cover scenarios which are related to software information (could be version or framework or language information).
Fetch Header Information Using CustomValueProvider In ASP.NET Web API
Apr 23, 2016.
In this article we will see how to create custom value providers that fetch a value from a header collection of a request and pass to model binders at the Web API action level.
Display Data In A DataGridView C# 6
Mar 29, 2016.
The sample example show you how to use DataGridView to display data in a grid format.
ASP.NET MVC 5: Datatables Plugin Server Side Integration
Mar 13, 2016.
Learn to integrate Datatables plugin with ASP.NET MVC 5 for server-side data management, searching, sorting, and pagination. Discover how to overcome challenges transitioning from classic ASP.NET webforms to MVC paradigm, enhancing web development productivity and user interactivity.
Fix To No Access-Control-Allow-Origin Header Is Present Or Working With Cross Origin Request In ASP.NET Web API
Mar 11, 2016.
In this article we are going to learn about a few possible fixes we can apply when we get an error “Response to preflight request doesn’t pass access control check: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
Dynamically Apply Color Coding In Grid With Dynamic Headers And Data
Feb 20, 2016.
In this post we will see how we can apply color coding dynamically to jQWidgets jQXGrid.
Display Data In DataGridView Using Entity Framework
Dec 27, 2015.
In this article I am explaining how to work with Entity framework to display the data in DataGridView.
Work With LINQ To SQL
Dec 24, 2015.
In this article I am explaining the steps to work with LINQ to SQL for displaying the data in DataGridView.
What is New In A Textbox In Universal Windows Platform
Dec 18, 2015.
This article highlighted what are the new properties in Textbox UWP.
Import Header Detail In SQL Server
Dec 15, 2015.
In this article, I am demonstrating how to import a flat file which contains both header and detail records with different formats in the SQL Server database header & detail tables respectively using SSIS.
DataGridView CRUD With Saving Image to SQL Server using C#
Dec 04, 2015.
In this article you will learn how to perform DataGridView CRUD with saving image to SQL Server using C#.
Freeze SharePoint List/Library Headers Using Sticky Header.JS
Oct 29, 2015.
In this article you will learn how to freeze SharePoint List/Library headers using Sticky Header.JS.
Change Header Names Dynamically In JQwidgets JQX Grid
Oct 28, 2015.
In this post we will see how we can change header names dynamically In JQwidgets JQX grid.
Insert Images In DataGridView In Windows Application Using C#
Oct 25, 2015.
In this article, I will show you how to insert images into DataGrid in Windows Application using C#.
Delete Multiple Records From A DataGridView Using CheckBox In Windows Form
Oct 22, 2015.
In this article you will learn how to delete multiple records from a DataGridView using CheckBox in windows Form.
Changing Pivot Header To Image Instead Of Text - Tip
Oct 21, 2015.
In this article you will learn how to change Pivot Header to Image instead of Text - [Tip].
Getting Started With Pivots and Tabs - Windows 10
Oct 21, 2015.
In this article you will learn how to start with Pivots and Tabs in Windows 10.
Real Time Use Of Context Menu Strip In Windows Form Application
Oct 18, 2015.
Learn how to use ContextMenuStrip in a Windows Forms application to delete records from a DataGridView. This tutorial covers setting up a context menu, handling right-click events, and executing a delete operation with SQL.
Merge Multiple CSV Files With Same Header Using Windows PowerShell
Sep 29, 2015.
Merging multiple CSV files with the same header using Windows PowerShell involves importing each CSV file, combining their contents while preserving the header, and exporting the consolidated data into a single CSV file.
DataGridView Gantt Style Chart Using C# WinForm
Sep 09, 2015.
In this article we will learn about DataGridView Gantt Style Chart Using C# WinForm.
Load DataGridView on Scroll Down in C#
Aug 23, 2015.
This article illustrate an example of loading the data into a DataGridView on scroll down.
Bind DataGridView in Window Forms Using C#
Aug 02, 2015.
In this article I’ll show you how to bind DataGridView in Windows Forms using C#.
Use Free Spire.Doc to Satisfy All Word Header and Footer Tools in C#
Jul 07, 2015.
In this article you will learn how to Spire.Doc to satisfy all Word Header and Footer tools in C#.
Headers and Titles For Articles
May 17, 2015.
This article provides guidelines for authors for the creation of headers and titles for articles.
Master Detail DataGridView in C# Windows Forms
Mar 30, 2015.
This article shows how to use the DataGridView Helper class to create a Master/Detail DataGridView.
Creating Dynamic DataGridView Using Helper Class
Mar 25, 2015.
This article explains how to create a helper class for a DataGridView in a Windows Forms application.