New Features in the .NET Framework 4.5

Topic contains new features and improvements in the following areas of the .NET Framework 4.5. .NET for Windows Store Apps Portable Class Libraries Core New Features and Improvements Tools Parallel Computing Web Networking Windows Presentation Foundation (WPF) Windows Communication Foundation (WCF) Windows Workflow Foundation (WF) .NET for Windows Store apps Windows Metro style apps are designed for specific form factors and leverage the power of the Windows operating system. A subset of the .NET Framework 4.5 is available for building Metro style apps for Windows by using C# or Visual Basic. This subset is called .NET for Windows Store apps … Click here to continue reading.

Tabs by using CSS

Its highly unlikely that tabs using only CSS would replace JavaScript based ones. <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”utf-8″ /> <meta http-equiv=”Content-Type” content=”text/html;charset=utf-8″ > <title>CSS Tabs</title> <style type=”text/css”> .css-tabs { position:relative; text-align:center; /* This is only if you want the tab items at the center */ } .css-tabs ul.menu { list-style-type:none; display:inline-block; /* Change this to block or inline for non-center alignment */ } .css-tabs ul.menu > li { display:block; float:left; } .css-tabs ul.menu li > a { color:#000; text-decoration:none; display:block; text-align:center; border:1px solid #808080; padding:5px 10px 5px 10px; margin-right:5px; border-top-left-radius:5px; -moz-border-radius-topleft:4px; -webkit-border-top-left-radius:5px; border-top-right-radius:5px; -moz-border-radius-topright:4px; -webkit-border-top-right-radius:5px; -moz-user-select:none; cursor:pointer; } … Click here to continue reading.