Forms Authentication in ASP.NET with C#

This article describe how to use Forms Authentication in ASP.NET with C#. After reading this article you will be able to create a web application with Forms Authentication. This article also includes downloadable sample project with source code.
Read more http://www.dotnetfunda.com/articles/article114.aspx
Author: Raja

ASP.NET Client Side TextBox Validation

Like most programming tasks, client validation can be as simple or as more complex .In this article I am going to explain the Client Side Texbox Number/Characters Validation with JavaScript .
Read more http://www.dotnetfunda.com/articles/article113.aspx
Author: Majith

Working with HttpHandler in IIS 7

In order to use custom HttpHandler in IIS 6 we simply used to write <httpHandlers> tag inside System.web tag in web.config file but in IIS 7 it is little tricky. In this article, I am going to show how to configure custom HttpHanlder in IIS 7.
Read more http://www.dotnetfunda.com/articles/article112.aspx
Author: SheoNarayan

Service Oriented Architecture, a real world example in ASP.NET with C#

Service Oriented Architecture (SOA) a buzzing word in the world of software development these days. In this article, we will try to understand what the SOA is and how to create and consume it in ASP.NET with C#.
Read more http://www.dotnetfunda.com/articles/article111.aspx
Author: SheoNarayan

Brief Notes about Windows Communication Foundation

In this article , im going to brief about WCF ( Windows Communication Foundation)
Read more http://www.dotnetfunda.com/articles/article104.aspx
Author: Majith

ToolTip for List Items

Adding tooltips for Items in a dropdownlist control
Read more http://www.dotnetfunda.com/articles/article108.aspx
Author: Deeraj

Uploading Files with ASP.NET ,VB.NET

In this article, I will explain how to uplaod files using ASP.NET ,VB.NET.It is a simplest way of uploading the files.
Read more http://www.dotnetfunda.com/articles/article109.aspx
Author: Majith

Service Oriented Architecture, a real world example in ASP.NET with C#

Service Oriented Architecture (SOA) a buzzing word in the world of software development these days. In this article, we will try to understand what the SOA is and how to create and consume it in ASP.NET with C#.
Read more http://www.dotnetfunda.com/articles/article111.aspx
Author: SheoNarayan

Reading and Writing Text Files

Text files provide a common denominator format where both people and programs can read and understand. The .NET Framework includes convenience classes that make reading and writing text files very easy.
Read more http://www.dotnetfunda.com/articles/article106.aspx
Author: Majith

C# and ActiveX DLLs

You may wonder about the idea of calling this DLL in a C# Application. Well, the C# language provides a way to call this COM server in a program. When we compile a C# program, Intermediate Language is generated and it is called as Managed Code. A Visual Basic 6.0 DLL is Unmanaged, meaning it [...]