.NET programming

Find articles, code snippets and sample projects on .NET programming technologies including C#, VB.NET, ASP.NET and so on.



You can make money from this site by posting original and quality articles that comply with Google AdSense policies.. Also, we offer several other reward programs including monthly profit sharing, cash rewards per post, contests & prizes etc to contributing members.

Submit Your Article

Articles

Get List Items through Recurrsive Sub-Folder in Moss 2007 using Web Services

In this article I'm going to explain how to get the files under Document Library Folders and Sub Folders, for example If the folders are Recursive then how to get the items behind it. In this article I'm going to explain clearly how to get the items in Recursive Sub folders in Moss 2007 using Web services.

Read and Write Excel in C#

In this article I'm going to explain how to read and write data from Excel file with cell by cell. Recently I'm in a situation to update or modify the data in each cell. If I go with Excel there is no option to update the data cell wise but when we go with Excel we can read / write / update data cell by cell, but coming back to performance it's little bit down as compare with Csv but in a situation to read / write/ update cell information Excel is the best option.

Read and Write CSV in C#

In this article I'm going to explain how to read and write data from Csv file with row by row. Recently I'm in a situation to read inputs from Csv file and write data into Csv with row wise. I'm little bit confused about the approach either we have to go with Csv or excel, I implemented in both the ways but coming to performance as compare to Excel, Csv give better performance. In this article I will show you how to handle Csv file using C#.

How to work with PDF font and text in C#

This article will explain how to work with PDF font and text using C#, such as embed TTF font, get the font information of text, create text with multiple font styles, extract text, find and highlight text and get the coordinate of text in PDF.

How to Merge and Split Word Documents in C#

This article is aimed to introduce a simple solution to merge a part of/whole word documents into a single document along with split a word document into separate documents by section and page break in C#.

Optimizing ASP.NET Web application performance through Bundling and Minification Part-2

In the first article we had seen how Bundling helps us to minimize the number of HTTP requests sent from browser to improve ASP.NET web page performance. Now I am going to cover Minification Part which helps to reduce the size of requested resources to improve ASP.NET web page performance in terms of load time of CSS or JavaScript files(resources).

Top 5 excellent features in SQL Server 2016

SQL server 2016 includes many features that helps to increase the performance, security, simplify the maintenance and data transformation. This article provides brief explanation on the some of the new features of SQL server 2016.

Android App Development Using C# and Xamarin

In this article we first try to create proper Xamarin.Android development environment by installing all the required components on our machine and then build our first Xamarin.Android application in C# language using Visual Studio.

Explaining Web Transformations in ASP.Net

Here i would like to explain Web Transformations in ASP.net. A transform file is an XML file that specifies how the Web.config file should be changed when it is deployed. Transformation actions are specified by using XML attributes that are defined in the XML-Document-Transform namespace, which is mapped to the xdt prefix.

Solid Principles in CSharp

Here I would like to explain Solid Principles in CSharp Acronym for SOLID Principles: S-Single responsibility principle O-Open closed Principle L-Liskov substitution principle I-Interface segregation principle D-Dependency princi9ple

Font issue when converting word to PDF format

We always find that that we cannot pick up the non-standard font in the result PDF page that displays well in the word document when we save word documents to PDF file format. In this article, I will use a few lines of codes to render word documents to PDF file with a non-standard font barcode font for example.

Font issue when convert word to PDF format

We always find that that we cannot pick up the non-standard font in the result PDF page that displays well in the word document when we save word documents to PDF file format. In this article, I will use a few lines of codes to render word documents to PDF file with a non-standard font barcode font for example.

Discussing Date and Time Method In ASP.NET C#

In this article we will discuss about Date & Time methods of ASP.NET, we will use C# to write code-snippet. ASP.NET Microsoft Technology provides date time with the use of SYSTEMTIME method of operating system.

Print barcode from mysql database using C#

Here i am going to explain you that how to print a bar codes from MySQL database. and working with file for printing a bar codes using C# language. It is very simple. Here i will read data from data table and write the data into file to print a bar codes.

Capture and save images from Web camera using C# and ASP.NET

This C# code sample explains how to capture and save images or videos directly from your web camera. This web camera functionality is implemented using flash and C# and ASP.NET. Learn more about how to capture images from webcamera using .NET and save in to your computer.

Comparison between "Using" and "finally"

This article is used to identify the basic difference between "Using" and "finally" in C#. It will helpful to choose the adoptable dispose method based on our requirement. As a developer we should know to dispose the object in best manner. We can dispose the object based on "Using" or "finally".

How to create and consume webservice

In this article am going to explain how to create a webservice using visual studio 2010 and how to consume the created webservice with in the client application. There might be some other articles too, but I explained clearly step by step which will be use full for beginners to understand easily.

How to call a windows application in your website ?

Today, I want to show you how a Windows application can be shown in your Web application or website with out adding any dll's. This is very Interesting to know, I experimented it. This I will demonstrate in this article with snapshots.

Submit Your Article