| Home | My Account | Directories |
Avoiding JavaScript and CSS stylesheet caching problems in sharepoint
Good news - Our application got new branding in this release, which changed my perception as a developer to see SharePoint applications. SharePoint is not only about C# and CAML other things like
Add List Items with users identity (Created By) when using RunWithElevatedPriviledges delegate
We faced a situation when we have to elevate the read only users permission to add/update the list items in SharePoint list. To accomplish this we usually go for the RunWithElevatedPriviledges delegate, but the only disadvantage of this approach is if we add/update any item within this delegate, it will save that record with 'System Account' identity. Following code can be used to overwrite the 'System Account' identity with current user's identity, So list item will display 'Created By' or '
Simplest way to get the strong name of an assembly
I found very interesting post which describes how to get strong name of the assembly without even opening the properties window of that assembly. I saw many fellow-developers are still not aware of this simple option that may make their life at least a bit easier, hence sharing this post. Old Method: Open the assembly in the GAC (c:WindowsAssembly) and view its properties. Then form the strong name with assembly name, version and public key token. http://www.understandingsharepoint.com/justask