http://www.sharepoint4arabs.com/AymanElHattab/Lists/Posts/Post.aspx?ID=97
http://gvaro.spaces.live.com/blog/cns!B06529FD3FC75473!855.entry
Tuesday, June 29, 2010
Code which will accept the date in dd/mm/yyyy format and return in the mm/dd/yyyy format in C#
string strFormatted = "";
DateTimeFormatInfo dateTimeFormatterProvider = DateTimeFormatInfo.CurrentInfo.Clone() as DateTimeFormatInfo;
dateTimeFormatterProvider.ShortDatePattern = "dd/MM/yyyy"; //source date format
DateTime dateTime = DateTime.Parse(strDate, dateTimeFormatterProvider);
strFormatted = dateTime.ToString("MM/dd/yyyy");
return strFormatted;
DateTimeFormatInfo dateTimeFormatterProvider = DateTimeFormatInfo.CurrentInfo.Clone() as DateTimeFormatInfo;
dateTimeFormatterProvider.ShortDatePattern = "dd/MM/yyyy"; //source date format
DateTime dateTime = DateTime.Parse(strDate, dateTimeFormatterProvider);
strFormatted = dateTime.ToString("MM/dd/yyyy");
return strFormatted;
Monday, June 28, 2010
Command to create the Configuration Database and Admin Content Database while installing MOSS 2007
Go to
C:\\Program Files\Common Files\microsoft shared\web server extensions\12\bin
and use the following command.
psconfig -cmd create -servername sqlserver -database SharePoint_Config
-dbuser sa -dbpass sapassword -user sqlservices -password
sqlservicespassword -admincontentdatabase Admin_Content
C:\\Program Files\Common Files\microsoft shared\web server extensions\12\bin
and use the following command.
psconfig -cmd create -servername sqlserver -database SharePoint_Config
-dbuser sa -dbpass sapassword -user sqlservices -password
sqlservicespassword -admincontentdatabase Admin_Content
Upload Files in SharePoint 2007
http://www.eggheadcafe.com/community/aspnet/69/10138586/uploading-picture-in-pict.aspx
http://www.dotnetspider.com/resources/29565-Uploading-images-into-picture-library.aspx
http://stackoverflow.com/questions/468469/how-do-you-upload-a-file-to-a-document-library-in-sharepoint
http://elczara.spaces.live.com/blog/cns!554EC06D366AC9D5!692.entry
http://www.dotnetspider.com/resources/29565-Uploading-images-into-picture-library.aspx
http://stackoverflow.com/questions/468469/how-do-you-upload-a-file-to-a-document-library-in-sharepoint
http://elczara.spaces.live.com/blog/cns!554EC06D366AC9D5!692.entry
Customizing the Top Site Navigation in Sharepoint 2007
For customizing the top navigation bar in the SharePoint 2007, use the following links.
http://office.microsoft.com/en-us/sharepointtechnology/HA101191001033.aspx
http://www.devexpert.net/blog/pt/blog/Customizing-MOSS-2007-Navigation-Menu.aspx
http://faraz-khan.blogspot.com/2008/11/writing-custom-navigation-provider-for.html
http://www.codeproject.com/KB/sharepoint/spnav.aspx
http://office.microsoft.com/en-us/sharepointtechnology/HA101191001033.aspx
http://www.devexpert.net/blog/pt/blog/Customizing-MOSS-2007-Navigation-Menu.aspx
http://faraz-khan.blogspot.com/2008/11/writing-custom-navigation-provider-for.html
http://www.codeproject.com/KB/sharepoint/spnav.aspx
Subscribe to:
Posts (Atom)