
asp.net (47)
asp.net articles
A CAPTCHA is a program which tells whether its user
is human or computers.
follow the steps below to add captcha in your web form
easily -
how to export GridView items to excel with header information
Written by Super UserAsp.net makes it easy to export tabular data to excel file.It's
easier to use GridView control data to export to excel.the following
codes shows how u can achieve this along with some header info at the
top of the data rows in excel -
I wanted paging for showing datalist items in pages.for
that i used pageddatasource.it's necessary very much.
following codes show how to add paging for datalist items -
How to verify credit Card number and card security code are valid
Written by Super Userwhen you process credit card payment the two
most sensitive inputs are taken from customer
are card number and card security code.you
will want to verify that the data entered
is valid before processing credit card payment.
how to create button and click event handler dynamically asp.net
Written by Super UserIt's a very common requirement to create different types of button and
it's click event handler dynamically in asp.net application.
following codes shows how to use GridView control.Its a
simple example.
in app main file -
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
following way a DataTable with data can be used to
populate gridview control in asp.net.following codes get files list
from a file path and adds in DataTable then sets that
DataTable as a DataSource of the GridView grdDirList.
make sure you have made the following configuration
to your IIS to run Asp.net applications-
how to limit the maximum number of characters in textbox control
Written by Super Userlimiting the number of characters in a textbox control
is tricky and useful.
the two functions in the codes mainly used to do that.
these two functions are-Limitvalidation and get_object.
.Net framework 3.5 sp1 contains more features than
previous .net framework versions like 2.0,3.0,3.5