Friday, May 29, 2009

Creating New Page Layouts

Usually sharepoint page layouts will work out in most of the requirements but what you will do if it does not meet your requirements you will have to create your own page layouts for use on the siteCreating page layout is accomplished in five steps1. Define Site Columns2. Define site Content Type3. Create Page layout4. Edit Page Layout5. Publish and Approve Page LayoutI am going to create a new page layout called Activity page for demo, the main...

Tuesday, May 26, 2009

I found something that when i bind SPGridView using SharePoint object model.The strange thing is that if I use this code everything works fineSPDataSource dataSource = GetTravelExpenses();string sCommand = @"<Query><Where><Eq><FieldRef Name='Travel_x0020_Request' /><Value Type='Lookup'>" + ddlTravelRequest.SelectedItem.Text + "</Value> </Eq> </Where></Query>";dataSource.SelectCommand = sCommand;spGrid.DataSource = dataSource;spGrid.DataBind();But when I use this code the CAML query is failing...

Wednesday, May 6, 2009

Microsoft SharePoint Server 2010

Microsoft is going to release Microsoft SharePoint Server 2010 to get more knowledge on this click h...

Monday, May 4, 2009

IE Crashes when ever my client check-out a file from document library

Today morning my client has come up with a problem that when he tries to check-out or check-in a document from a document library, he was getting strange error message, the IE was not able to open Word document, that too it was coming only for few employeesAfter seeing end user environment details i find out that they have installed offcie2003 along with office 2007 on same computerUsually this problem occurs when you install one or more 2007 Office...

SharePoint Media Streaming WebPart

Recently I have implemented media streaming web part (YouTube technology) for one of my client, I would like to share this with you guysThis I have developed for one of my client so, I am not going to share code with you guys.Media streaming web part uses windows media server for playing media files because It is especially useful for streaming large amounts of data over busy, congested networks and low-bandwidth connections. Streaming uses bandwidth...