
Articles (154)
articles
beginners of .net programming can't guess sometime that
how easy is sending mail through .net.there are many ways
to do that.but i am writing here the easiest method to send
mail in c# with .net.It doesn't involve a lot's of coding.
all is built in and no more components.
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.
to display the help and let the users easily get help
whenever they need it you can call the Help.ShowHelp
method in your form.
Asp.net caching helps you to create high performance applications.
you can cache objects like DataSets,or your created objects.you can
also do page level caching if you used user controls in the page
if your aspx page includes lots of work.
how to develop dotnetnuke module using template
Written by Super Userfollowing are guidelines to develop modules
for dotnetnuke 5/6 with visual studio 2008/2010 -
Dont know which database is used by your Joomla site?
Written by sreeramDatabase 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 -
running application under local IIS server from Visual studio
Written by Super Userwhen you run asp.net application project from visual
studio,visual studio uses their development server.
It's not the right way to develop asp.net appication.
all asp.net handlers implement the interface of IHttpHandler located
in the namespace of System.Web.ISAPI(Internet server application
programming interface) extensions are somehow analogous to Handlers.