Hi Folks, if you are developing a webpart or any sharepoint customized feature,and you would like to send an email through your webpart or custom code,you can achieve this by 2 ways: 1) use normal .net classes to send email (System.Net.Mail namespace). 2) use below code: using Microsoft.SharePoint.Utilities;...
Hi Folks, Any SharePoint Development requires you to develop your Web Part and deploy it to sharePoint,in this post i will describe the steps required to deploy your web part to sharepoint 2007 site: 1) after creating your web part,you have to sign it with strong name. To Do that : simply open the project...
Hi Folks, This post to inform that when you develop on sharepoint 2007 object model,and if you are manipulating with lists in sharepoint you might face in the item names or field names you will find that the spaces in sharepoint is converted to this hexidecimal code "0x0020". Example: if you...