
asp.net (44)
asp.net articles
List<> can be used as a collection of objects which
can be accessed by index.List originated from
System.Collections.Generic class.List objects can
be sorted,searched,manipulated.so List is very
useful in programming for holding any type of
objects.following shows a example of List<> -
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;
how to resize or make thumbnail image in asp.net
Written by Super Userby the following way you can resize a image to a predefined
dimension and resolution.you can also use it to make a image
thumbnails.
ASP.NET controls automatically keep their data
when page is sent to the server in response to
events (like a user clicking a button).
this persistence of data is called view state
redirecting to custom error pages in asp.net application
Written by Super Userin asp.net application there may be different
server errors like file not found,server error,
etc.when those errors happens default ASP.NET error
page is shown which looks odd and users don't
understand what type of errors occured.to overcome
these problems it's a good idea to use own
error files.
how to add silverlight application to a asp.net application
Written by Super Usersilverlight application are great.you can add silverlight
application in your asp.net project easily.follow the
steps and you will know how to create and add silverlight
applicaiton in asp.net application/website -
.Net framework 3.5 sp1 contains more features than
previous .net framework versions like 2.0,3.0,3.5
how to get Gravatar image in asp.net application
Written by Super UserGravatar.com is used to store one's avatar image according to email.
then if you comment in any application using your that email address
where gravatar image has been programmed then your avatar image will
be displayed in the application.
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.
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.