Tuesday, July 31, 2007

About the School of the future

Hello

I found something very interesting effort by microsoft.

Yes its the school of the future which is being raising by Microsoft with the help of local authorities.

to know more visit

http://www.microsoft.com/Education/SchoolofFutureDocumentary.mspx

Enjoy!

Friday, July 27, 2007

Silverlight Tutorials

Hello

Good Website for Silverlight Tutorials


  • Silverlight with Java Script Tutorial
  • Silverlight Examples and samples

http://www.wynapse.com/Silverlight_Tutorials.aspx

Enjoy!

Thursday, July 26, 2007

Show JavaScript Message While Closing IE Without Saving


Hello Friends


Following is the script to show message while navigating away from the current screen in browser.



var blnConfirmNavigation=true;
window.onbeforeunload = function (evt)
{


blnDeleteForum=false;
if(blnConfirmNavigation)
{
var message = 'You have not save the content of the page. Your changes will not be saved.';
if (typeof evt == 'undefined')
{
evt = window.event;
}
if (evt)
{
evt.returnValue = message;
}
blnDeleteForum=true;
return message;
}
}


Enjoy!

Thursday, July 5, 2007

.NET Framework 3.0 Versioning and Deployment Q&A

Hello Friends,

I have found some Q&A related to .net framework 3.0 Versioning and deployment.

You can find answers to some questions like

  • What is the .NET Framework 3.0 (formerly WinFX)?
  • What happens to the WinFX technologies?
  • How does the .NET Framework 3.0 relate to the .NET Framework 2.0?
  • Will the name change be reflected in any of the existing .NET Framework 2.0 APIs, assemblies, or namespaces?
  • How does "Side by Side" work for the .NET Framework 3.0?

You can find answers to these and many other questions on following link.

http://msdn2.microsoft.com/en-us/netframework/aa663314.aspx

Hope this will help

Enjoy!