Thursday, July 31, 2008

Very good Caml Query Builder

http://www.u2u.info/Blogs/karine/Lists/Posts/Post.aspx?ID=28

Sharepoint Tools : Must have


*PowerShell Script Generator*
http://www.microsoft.com/resources/TechNet/en-us/Office/media/WindowsPowerShell/WindowsPowerShellCommandBuilder.html

Performance Measurement Tools
DynaTrace
http://www.compuware.com/application-performance-management/dynatrace-test-center.html
Load Runner
http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175451#.UTTRvqKOQy0

Code Maintainance tool(Code ReSharper-)
http://www.jetbrains.com/resharper/

* Online HTML ENCODER*
http://www.opinionatedgeek.com/dotnet/tools/htmlencode/Encode.aspx

*All Connection String Samples*
http://www.connectionstrings.com/

Tools by SysInternals
================
Process Monitor
More details here - http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx

and many more here - http://technet.microsoft.com/en-us/sysinternals/bb545027

CamStudio - Captures activity on the screen
=================================
http://download.cnet.com/CamStudio/3000-13633_4-10067101.html


1. Internet Explorer Developer Toolbar : Very good tool for web development
http://www.microsoft.com/DownLoads/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en
Steps to enable IEToolbar:

1. Tools-->Internet options --> Security Tab --> Local Intranet --> Custom Level --> Run ActiveX Control or PlugIn (Administrator Mode)

2. Tools --> Internet Options --> Programs --> Manage add-ons --> IE Developer Toolbar --> Enable

3. Tools --> Internet Options --> Advanced --> Enable third party browser-extensions 2. Color Picker
Download "pixiesetup.exe"
3. WebDevelopment Helper
Download "WebDevHelper.msi"
4. U2U caml query builder
Download "U2UCamlCreator.exe"
5. Fiddler
Download "FiddlerSetup.exe"
6. Reflector
Download "Reflector.zip"
7. WSS SDK
Download "wsssdk.exe"

8. SharePoint Solution Generator
Download "VSeWSS.exe"
9. VS2008 WSS Extensions
Download "VSeWSSv12.exe"
10. VS2005 extension for WWF
Download "Visual Studio 2005 Extensions for Windows Workflow Foundation (EN).exe"

Tuesday, July 29, 2008

Session.SessionID uniqueness.

Session.SessionID is unique only after there is some value stored in session.

Otherwise it always give different id at every postback.

Wednesday, July 16, 2008

How to Disable refresh button in web page

// Disable F5 button to disable refresh.

function checkKeyCode(evt)

{


 

var evt = (evt) ? evt : ((event) ? event : null);

var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);

if(event.keyCode==116)

{

evt.keyCode=0;

return false

}

}

document.onkeydown=checkKeyCode;


 


 

//Disable Right click

function Disable()

{

if (event.button == 2)

{

return false;

}

}

document.onmousedown=Disable;


 

Note: We cant control the refresh button of browser in general ways.

Sunday, July 13, 2008

WSS3.0 or MOSS2007 : UI Customization references

Heather Solomon - http://www.heathersolomon.com/blog/

How to: Customize the Display of Quick Launch -- http://msdn.microsoft.com/en-us/library/ms466994.aspx

Windows SharePoint Services Default Master Pages -- http://msdn.microsoft.com/en-us/library/ms467402.aspx

http://msdn.microsoft.com/en-us/library/ms476046.aspx

CSS Reference Chart for SharePoint 2007

http://www.heathersolomon.com/content/sp07cssreference.htm#WebParts

WSS3.0, SharePoint2007: Change masterpage(Application.master) at runtime with HTTPModule

http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=3580840&SiteID=1

How to create a custom theme in SharePoint2007 or WSS3.0

http://www.heathersolomon.com/blog/articles/create2003theme.aspx

http://ariswibowo.wordpress.com/2007/03/05/creating-moss-2007-theme/

http://www.sharepointblogs.com/tigirry/archive/2007/07/03/custom-site-theme-for-sharepoint-2007-moss-2007-and-wss-3-0.aspx