Posted by Shantha Kumar on 31st March 2008

To attach the file from Local Machine to SharePoint ListItem as an attachment, Import the System.IO namespace to use the Stream Class to read the file contents.

Use System.Web.UI.WebControls.FileUpload control is named as fileUpload in code.
Sample code for uploading the file from Local Machine to ListItem attachments as follows,
//Check the FileUpload control has the file
if (fileUpload.PostedFile [...]

Posted by Shantha Kumar on 26th March 2008

I took my SharePoint certification exam on Tuesday afternoon and I Passed with 97%. It contains mainly the key concepts of SharePoint Services.
I refereed this site and WSS3.0 SDK. Examples in “WS3.0 inside by Ted Pattison book” are also helpful for certification exam.
If you through with the Key concepts of WSS3.0, It’s easy to get [...]

Posted by Shantha Kumar on 1st March 2008

In this post, we are going to see integrating the webpart with Silverlight contents on SharePoint Site.
 For that, we need to combine all required java script and Xaml files (used to display the Silverlight content) in to single assembly without any dependent files. It makes sense to embed the Xaml and java script file as [...]