.NET Resources - Articles, Blogs, Tools, Book Reviews and more...

You can find valuable .NET resources including Articles, Software tools, book reviews, blogs, links to good articles and much more.



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

How to install .Net Framework 3.5 in windows 8.1?

Windows 8.1 does not include .NET Framework 3.5 (include .NET 2.0 and 3.0) by default. But if the user is upgrading from Windows 7 to Windows 8, then .NET Framework 3.5 is fully enabled. The user can make sure this feature is enabled by check in "Program and Features".

JQuery AutoComplete does not work after Ajax Partial Postback

jQuery AutoComplete does not work after Ajax Partial Postback. when we use asp.net ajax with jquery autocomplete, after partial postback jquery autocomplete does not work. In this article i am going to explain about the solution of postback problem of jquery autocomplete textbox.

Temporary Tables in SQL Server

Sometimes we need to manipulate huge amount of data with store procedure. At this time we need to save data into temporary table and delete those after doing manipulation. Instead of creating simple Table as temporary table we can use Temporary Table of SQL Server. In this article I am going to explain some basic information regarding Temporary Table.

Convert a DataReader to DataTable in ASP.NET

When working with Datareaders one of the problems we sometimes face is binding these to gridview or any 3rd party controls. Some controls will not bind to a DataReader but nearly all controls bind to a DataTable. So in this article i am going to explain the process how to convert a datareader to datatable.

Import Data from Excel to SQL Server using ASP.Net

Many times we need to import data from excel sheet to Sql Server data base in our web application. So Here I am going to show you the step by step process to import data from Excel to SQL Server. In this article you will get the code for uploading the excel file into server and then import data from that file into SQL Server. How to import Data from Excel to SQL Server using ASP.Net?

How to read excel data and show on GridView in asp.net?

In this article i am going to show how to read excel sheet data and show it in a gridview. You can read both .xls and .xlsx excel sheet. Sometimes we need to import data from excel sheet to sql server then you can use this method to read excel data and then store data in sql server.

Create Online Exam Project with ASP.Net & C#.Net with JavaScript Timer

This Code Snippet demonstrates a sample Online Exam application using ASP.Net and C#.Net, SQL Server 2005. First it takes Name and then set a timer to the questions with this name. It uses JavaScript for displaying Timer. Use this application to create simple online exam application.

Drop all tables from database in SQL Server 2005

Sometimes in our application we create some temporary tables for our use and because of some reason those are not deleted by our application and our database becomes heavy due to large number of tables. So we want to delete all those temporary tables at a single query. Use this query to delete all tables.

Different ways of using Hyperlink control in data controls

In this article I am going to explain the different ways of using hyperlink control in asp.net data controls. Many times we need to use hyperlink control in our web application projects. So i am here provide the basic ways to use the hyperlink control in our project for beginners.

How to Create SiteMap dynamically in asp.net?

In this article I am going explain how to create sitemap dynamically. Suppose I have created one site for shopping site and which has many products stored into database and It automatically creates SEO friendly page after fetching the data from database. To get these pages crawled by search engines you have to create one site map and link that site map to search engine.

Create Excel sheet in C#.net using interop service

Here I am going to explain how to create excel sheet dynamically in c#.net using .net's interop service. Sometimes we need to create excel sheet from provided database's data and we need to save that excel file into a drive. With this interop service we can access each and every functions of Microsoft Excel.

Create simple guest book application using ASP.Net and C#.Net

In this article i am going to describes How to create simple guest book application using ASP.Net and C#.Net? If you want to create a simple guest book for your website then it is the right application for you. This is very simple application which use c#.net's IO namespace.

Upload Large File to a Production Server in asp.net

Upload Large File to a Production Server using asp.net.A size restriction protects your application against "denial of service attack". Sometimes you want to upload large file onto web server using your web application, but the default setting IIS setting is very low. so you have to specify this in web.config file.

How to get rows into comma separated values column in sql

How to get rows into comma separated values column in sql. Fetching rows values into comma separated column value is required lots of time in our projects. So I tried to achieve this and lastly found one solution. Use this to get all row values into one single column value with comma separation.

Submit Your Article