Showing posts from July, 2008
< %@ Page Language = " C# " AutoEventWireup = " true " CodeFile = " MouseOverGrid.aspx.cs " Inherits = " MouseOverGrid " % > <!DOCTYPE html PUBLIC "-//W3C//DTD XHT…
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…
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…
< %@ Page Language = " C# " % > < %@ Import Namespace = " System " % > < %@ Import Namespace = " System.Web " % > < %@ Import Namespace = " System.Web.…
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…