
Articles (149)
articles
The great control in the asp.net ajax is the update
panel control.it can be added to almost every
asp.net page almost magically.this control when
used with a ScriptManager permits a programmer to
use partial rendering(a technique by which many
sections of page updated partially without reloading
the entire page).
how to create login by running multiple subsequent forms in c#
Written by Super Userit is possible to run Application.Run twice in csharp
application.the following example shows that.it's a
example to create login to access the application.
how to upgrade dotnetnuke website to upper version
Written by Super Userupgrading dnn website to upper version is easy.one
have to follow the following steps to do upgrading.
namespaces is a old concept in c# programming.both
java and c# uses this concept.a namespace is act like
a 'wrapper' around one or many elements which gives
them uniqueness.
naming conventions for Class, Variable, control, other names in code
Written by Super Userin coding giving proper names to methods,classes,controls,
variables,others is neccessary and good programming practice.
think that a method name-show button click.
Database connection implementation using function & xml file
Written by Super UserIt's a good idea to use a class say gateway where all
database access codes will be written.in this gateway class
you will implement db connection as follows -
first create another class -
n your asp.net application/website you can count
how many visitors are browsing your website easily.
for this add a Global.asax file in your website.
then add the following codes in that file -
you should backup your database file of your
windows software.there are many reasons why you
will backup your database file.i will not write
details about that.i showing here how to
backup your database file for safety of your
database -
It is needed to check whether your website is
available or down.It's better you create a WPF
application to check that.you can also check
status periodically besides checking status on
a button click.the following program shows how
to check the website status by clicking a button -
how to display ArrayList content in DtataGrid
Written by Super Userwe all know well that the DataGrid is used for database work.we
can use DataGrid contorl to show data from database tables.
but it's that the new version of the DataGrid control in the c#
language and Vb.net is able to show any other objects
of classes which implements IList interface.