Sunday, February 24, 2008

Cool Stuff for Developers

1)For code search
1)For Studies
http://www.google.com/codesearch?hl=en&q=show:ARc_vTOc7Oc:wZf222A4j8E&sa=N&ct=rdl&cs_p=http://examples.oreilly.de/english_examples/adonetckbk/AdoDotNetCookbookCS.zip&cs_f=AdoDotNetCookbookCS/Main/Chapter+01
2)For Real time webapplication
http://www.google.com/codesearch?hl=en&lr=&q=gridview&btnG=Search
2)To debug javascript code
Go to IE's View tab -->Script debugger
javascript code wil be opened in microsoft script debugger window
put breakpoints where u want to debug the javascript code
If its not available on your IE browser then you have to download it from
http://www.microsoft.com/downloads/details.aspx?FamilyID=2f465be0-94fd-4569-b3c4-dffdf19ccd99&displaylang=en
or
http://www.script-debugger.com/download/
To debug javascript with Visual studio2005
http://geekswithblogs.net/lazydeveloper/archive/2006/07/10/84552.aspx
1. Start your application from Visual Studio IDE.
2. Open "Script Explorer" from your menu bar (Debug->Windows->Script Explorer). "Script Explorer" window will open. If "Script Explorer" is not available in menu; follow this
a. Enable script debugging options in your browser (Tools->Options)
b. Change your Visual Studio IDE settings to "Web Development Settings" (Tools->Import and Export Settings)
c. Enabled your Visual Studio IDE Just-In-Time debugger for "Script" (Tools->Options Debugging-> Just-In-Time)
3. In your application navigate to the intended page OR refresh your current page.
4. All .js file attached to you page and embedded javascript will be seen in "Script Explorer".
5. Double click (in "Script Explorer") to open the script you wish to debug.
6. Script file will be open in main window of Visual Studio IDE.
7. Insert the break point where you wish to debug.
8. Start execution in your application and debug your script (as usual as your server side code).

4)To implement remote debugging in Visual Studio 2005
http://support.microsoft.com/kb/910448

.........Keep awaiting ......Still I have to add some more stuffs to this post