
c#.net (28)
c#.net articles
how to access and update appSettings in config file of windows application
Written by Super Useryou can put application specific settings in the
appSettings section of your app.config file in your
c# windows form application.you can access,edit,update
those settings.I show you how -
we can use DataSet to populate DataList or
GridView efficiently.DataSet is the best
option for accessing rows of tables.
Organizing files in folders in VS solution project
Written by Super Userwhen you build a software make sure that you built it by object oriented way
and you organized your files in folders as following way -
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 you can accomplish a project successfully?
Written by Super Userif you are participating in a project of a
course,assignment,others on c#.net or asp.net
or may be others then you should follow the
steps for finishing the project successfully.
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.
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.
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 -
to convert bitmap image file to gif file you
have to create bitmap object first.