My Articles

Every man has flair of writing. He can be a successful a poet, a novelist, a dramatist, a comedian or anything. Inspired by them & eager wish to give vent to my pent up experienced knowledge I too tried to pen down my worthy practice. I am very passionate to write technical articles but due to time constraint I just have written three only in the code project site which you can go through from the following link. And I am glad my articles have been approved by most of the readers. I will continue to write more articles and for which I will update you for the same.


Introducing Serialization in .NET:

Serialization is a process of converting an object into a stream of data so that it can be is easily transmittable over the network or can be continued in a persistent storage location. This storage location can be a physical file, database or ASP.NET Cache. Serialization is the technology that enables an object to be converted into a linear stream of data that can be easily passed across process boundaries and machines.

Read more…



Developing and Deploying Custom Web Parts for SharePoint Portal 2007:

In this article, I am going to show how to develop and deploy a custom web part which is used to connect to a database (SQL) and delete data from a database. Microsoft Office SharePoint Server MOSS (2007) provides a lot of basic web parts that will have some limited functionality. If you need a web part which has different functionality, you have to go for Custom Web part which has to be built on your own or can be bought from third parties.

Read more…



SharePoint - .Asp.net user control as a Webpart:

In my first article of SharePoint webpart Developing and Deploying Custom Web Parts for SharePoint Portal 2007) CustomWebpartSharepoint.aspx I have discuss how to make the custom web part, in that case you have to make the class library project and do all work at code behind, even you have to write the code to render the controls.

Read more…