Category: My Blog

  • Blog
  • Category: My Blog

Difference between generic handler and http handler- ASP.NET

As per MSDN Generic Handler is a default handler which will have @webhandler directive and has .ashx extension this generic handler is not having UI but it provides response when ever any request made to this handler. HTTP Handler is a process which runs and continue to server request and give response based on the

Create a Site Search Engine in ASP.NET – SiteSearch.aspx

I have found a very interesting link to design search engine in asp.net. Which describes the sorting and searching mechanism in result data grid.following the link of that article…………. http://www.developerfusion.co.uk/show/4389/2/

Default keyword in c#

In this post, I am going to explain about default keyword in c#. As per MSDN default keyword in C# used to assign the default value of the type. In some situation its comes very handy where we don’t want to create object and directly assign the default value of it. The basic syntax of

what is serialization -deserialization

Serialization is the process of storing class object into the some otherstate may be a file or file or something like else.Object Serialization is the process of reducing the objects instance intoa format that can either be stored to disk or transported over a Network. Later time the Object will changed into its original state