asp.net

asp.net (44)

asp.net articles

Tuesday, 15 January 2013 13:56

how to add captcha in asp.net page

Written by
Rate this item
(0 votes)

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 -

Rate this item
(0 votes)

Asp.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 -

Wednesday, 16 January 2013 13:56

how to implement paging for datalist control

Written by
Rate this item
(0 votes)

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 -

Rate this item
(0 votes)

when 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.

Rate this item
(0 votes)

It's a very common requirement to create different types of button and
it's click event handler dynamically in asp.net application.

Monday, 17 June 2013 13:56

how to populate a gridview with DataTable

Written by
Rate this item
(1 Vote)

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.

Thursday, 20 December 2012 13:56

How to configure IIS localhost

Written by
Rate this item
(0 votes)

make sure you have made the following configuration
to your IIS to run Asp.net applications-

Monday, 17 December 2012 13:54

Simple Gridview control example

Written by
Rate this item
(0 votes)

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;

Tuesday, 15 January 2013 16:24

how to show Gridview items details using DetailsView

Written by
Rate this item
(0 votes)

GridView is the most common data representation
contol in asp.net.It's needed to show users the
items details when the item is selected.DetailsView
control can be used precisely to show the Gridview items
details.

Monday, 28 January 2013 13:57

asp.net routing for url rewriting

Written by
Rate this item
(0 votes)

asp.net routing is easy to use for rewriting any url.

if you have a url like wwww.aspdotnetsite.com/Projects?user=username.
but if you want to have it in short name for marketing or for anything
you want like this is the resulting url -
wwww.aspdotnetsite.com/Projects/username

Page 2 of 5

Latest discussions

  • No posts to display.