Showing posts from July, 2008

Enum With String Values In C#

In this post, I will show how to assign a string value to an enum(In C# you cannot have an enum that has string values) Step1 First I created the new custom attribute class, the source is below: Step2 Then I created a ne…

Using ArrayList as DataSource for Gridview-ASP.NET

Let us suppose that you have four controls (TextBox, DropDownList, ListBox ), and your requirement is that when the user enters texts or make a selection, all these items/values get stored inside an ArrayList and then this Arra…

How To Post Data From One ASP.NET WebPage To Another Application

This article will show you how to post data from one page to another in the ASP.NET web application. I recently worked on one project in which I need to send data to a different application from the ASP.NET web page. Check out t…

Load More
That is All