Thursday, June 17, 2010

Enable AJAX Support in SharePoint,WSS, MOSS 2007

Microsoft suggests the following changes to web.config for your SharePoint installation if you want to enable AJAX functionality. http://msdn.microsoft.com/en-us/library/bb861898.aspx

 

I found the this file ( http://www.hansrasmussen.com/2010/02/enable-ajax-support-in-sharepointwss-moss-2007/ ) which enable AJAX support in MOSS 2007 using Feature.

Wednesday, June 16, 2010

SharePoint DateTimeControl returns today's date if there is no selected date

By Default SharePoint DateTimeControl returns today's date if there is no selected date. Use IsDateEmpty to check whether user selected any date or not. If IsDateEmpty returns true, means no date selected by the user otherwise user selected the date and use that date.

 

 

if (!((DateTimeControl)c).IsDateEmpty)
{
    columnValue = ((DateTimeControl)c).SelectedDate.ToString();
}
else
{
    columnValue = "";
}

Saturday, June 5, 2010

Number of rings before voice mail picks up

Go to phone settings (Start –> Settings --> Personal), select services tab, highlight call forwarding and then the GET SETTINGS button. from there it will show what you currently have and let you change it. Max is 30 Sec.