Free Microsoft E-Learning Materials, Collection 6261: Developing Rich Experiences using Microsoft .NET Framework 3.5 and Visual Studio 2008
This collection of 3 2-hour premium clinics teaches about the new capabilities provided by the .NET Framework 3.5. These clinics are for experienced Developers and Software Architects who are looking to adopt Microsoft's next generation technology within their solutions.
Collection 6261: Developing Rich Experiences using Microsoft .NET Framework 3.5 & Visual Studio 2008:
This is a one year subscription offer for free. I've already take Clinic 6262 and started with Clinic 6264. I must say I am ignorant about these new technology and I decided to start from scratch and have an overview over them before starting reading more detailed materials. And it needs total of 2 hours for each clinic.
Microsoft Virtual Server 2005 R2 & VPC 2007 SP1 Updates are available
Few days ago Microsoft released both Virtual Server 2005 R2 SP1 & VPC 2007 SP1 updates.
Microsoft Virtual Server R2 SP1 includes support for the following additional Host and Guest Operating Systems:
Additonal Guest Operating System support:
Windows Vista® Ultimate Edition with Service Pack 1 (SP1)
Windows Vista® Business Edition with Service Pack 1 (SP1)
Windows Vista® Enterprise Edition with Service Pack 1 (SP1)
Windows Server® 2008 Core
Windows Server® 2008 Standard
Windows Server® 2008 Datacenter
Windows Server® 2008 Enterprise
Windows Server® 2008 Small Business Server
Windows XP Professional with Service Pack 3
Additional Host Operating System support:
Windows Vista® Ultimate Edition with Service Pack 1 (SP1) (non-production use only)
Windows Vista® Business Edition with Service Pack 1 (SP1) (non-production use only)
Windows Vista® Enterprise Edition with Service Pack 1 (SP1)(non-production use only)
Windows Server® 2008 Core
Windows Server® 2008 Standard
Windows Server® 2008 Datacenter
Windows Server® 2008 Enterprise
Windows Server® 2008 Small Business Server
Windows XP Professional with Service Pack 3 (non-production use only)
While Microsoft Virtual PC 2007 SP1 includes support for the following additional Host and Guest Operating Systems:
Additonal Guest Operating System support:
Windows Vista® Ultimate Edition with Service Pack 1 (SP1)
Windows Vista® Business Edition with Service Pack 1 (SP1)
Windows Vista® Enterprise Edition with Service Pack 1 (SP1)
Windows Server® 2008 Standard
Windows XP Professional with Service Pack 3
Additional Host Operating System support:
Windows Vista® Ultimate Edition with Service Pack 1 (SP1)
Windows Vista® Business Edition with Service Pack 1 (SP1)
Windows Vista® Enterprise Edition with Service Pack 1 (SP1)
Windows XP Professional with Service Pack 3
You can optain the download from the following links:
WPF Application Quality Guide
The WPF team at Microsoft is going give us “WPF Application Quality Guide”. They plan to release the
Guide in stages, updating and fine-tuning the content, based on
feedback provided by audiences.
Current version is 0.2, this version contains -as specified in the link above- more examples that illustrate how to find the
AutomationElement object by using UI Automation; introduction to the
WPF programming stack and software testing; high level overview of test
methodology, planning, and strategies; visual verification testing;
media testing; verification of animations and other transitions;
performance best practices resources; security testing considerations;
a list of tools for creating, debugging, and testing WPF applications;
and additional topics in the Appendix about resources for WPF data
binding and debugging, and about WPF interoperability with Win32 and
Windows Forms.
Popup Master-Detail using GridView, DetailsView and JQuery with jqModal
Introduction:
Last month Matt Berseth posted very good post about how to build Master-Detail with the GridView, DetailsView and ModalPopup Controls. Today I'm going to clone his post and build the same feature using jQuery with jQuery Plugins; one for popup windows jqModal& and the other is for Color Animation. You can view a demo of this sample here [View Demo].
Prerequisites:
Because I'm using some design tips and styles posted in Matt's posts, I recommend to return to his original posts regarding styling and UI enhancement. I used the styles and design shown on his post Building a VS2008 Styled Grid with the GridView Control.
In my sample I'm using UpdatePanel, and used a client side technique to update the UpdatePanel. To read and review more about this technique please read Dave's post Easily refresh an UpdatePanel, using JavaScript.
It is important also to review documentation of jqModalas I'm not going to explain its APIs.
Implementation:
To make a long story short, I just modified Matt's sample and replaced ModalPopup control of AJAX Control Toolkit with jqModal. Also Matt used to indicate the updated row by setting a style sheet class to the updated row for certain period of time then remove it to make it look as before. I did the same, but I used some kind of animation provided by Color Animationplugin for jQuery.
More...