12

Tuesday, November 25, 2008

Visual Studio 2010 Available...

Oh.. no.. Not again.. Microsoft releases another version of .Net Framework, now it is 4.0 (quoted as Next generation of developer tools.. Oph.. what the ...). Also, they unveiled...

Wednesday, April 9, 2008

Sharepoint 2007 Alerts are not working

Finally I managed to resolve this problem in my case.Issue:We have implemented a MOSS solution which contains a few custom lists. We have also configured alerts and customized them to suit the customer’s requirements.Alerts were working fine but about suddenly they stopped working for one particular list. Alerts are working for all other lists/document...

Saturday, March 29, 2008

Web 2.0 Design Patterns

In his book, A Pattern Language, Christopher Alexander prescribes a format for the concise description of the solution to architectural problems. He writes: "Each pattern describes a problem that occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a...

Useful Sharepoint Resources

http://www.sharepoint-tips.com/ http://www.sharepoint-exchange.blogspot.com/http://www.microsoft.com/sharepoint/ ...

Custom Script while submiting a list item in MOSS

Here is another trick to add custom validations or script while submiting a listitem in NewForm.aspx or EditForm.aspx.When you click on OK or Submit in NewForm.aspx or EditForm.aspx, it will execute following script to submit the data into SharePoint DB.if (!PreSaveItem()) return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(<>,...

SharePoint Customization

Here is the procedure to customize Multiline text box and Multi select box in MOSS 2007. To increase the size of Multiline textbox, modify width in .ms-long class. If you want only modify in one page then add a content editor Webpart in the page and place the following code inside. .ms-long {WIDTH: 400px} This will change only in that...