Klugger
Name: Klugger
Score: 16,945.71
Last Seen: 474 days, 6 hours, 38 minutes ago
Member Since: 19 January, 2009
DotNetShoutout
atom rss
4
Shouts

Free Video Training: ASP.NET MVC 3 Features - Scott Guthrie's Blog

published 797 days, 11 hours, 7 minutes ago posted by iftekharahmedamitiftekharahmedamit 799 days, 13 hours, 15 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Sunday, March 13, 2011 10:13:34 AM GMT
A few weeks ago I blogged about a great ASP.NET MVC 3 video training course from Pluralsight that was made available for free for 48 hours for people to watch.  The feedback from the people that had a chance to watch it was really fantastic.  We also received feedback from people who really wanted to watch it – but unfortunately weren’t able to within the 48 hour window. The good news is that we’ve worked with Pluralsight to make the course available for free again until March 18th.  You can watch any o... (more)
category: Screencast | clicked: 34 | 1 comment | | source: weblogs.asp.net
tags: ASP.NET MVC 3, ASP.NET MVC, Screencasts, MVC 3, Screencast, ASP.NET
4
Shouts

HTML5-MVC application using VS2010 SP1 - IBloggable - implemented

published 797 days, 11 hours, 7 minutes ago posted by iftekharahmedamitiftekharahmedamit 799 days, 13 hours, 9 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Sunday, March 13, 2011 10:20:22 AM GMT
This is my first attempt at creating HTML5 pages. VS 2010 allows working with HTML5 now (you just need to make a small change after installing SP1). So my Razor view is now a HTML5 page. I call this application - 5Commerce – (an over-simplified) HTML5 ECommerce site. So here’s the flow of the application:home page renders user enters first and last name, chooses a product and the quantity can enter additional instructions for the order place the order user is then taken to another page showing the order... (more)
category: Web Dev | clicked: 13 | 1 comment | | source: weblogs.asp.net
tags: Visual Studio 2010 SP1, VS2010 SP1, Visual Studio 2010 Service Pack 1, MVC, html5
4
Shouts

SQL Server: How to Find Costliest Nodes in Graphical Execution Plan : Connect SQL

published 797 days, 11 hours, 7 minutes ago posted by lionofdezertlionofdezert 801 days, 3 hours, 47 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Friday, March 11, 2011 7:42:15 PM GMT
Graphical Execution Plan is first place, a DBA like to visit, during query optimization. If execution plan contains few nodes then it is easy to find out the culprit node. But what if target query is complex and resultant execution plan contains dozens of nodes. (more)
category: Data | clicked: 0 | 1 comment | | source: connectsql.blogspot.com
4
Shouts

A LINQ Style Median Operator

published 797 days, 11 hours, 7 minutes ago posted by BlackWaspBlackWasp 800 days, 4 hours, 24 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Saturday, March 12, 2011 7:04:58 PM GMT
Language Integrated Query (LINQ) includes an operator that calculates the average value of a sequence containing numerical data. The Average method calculates the mean of the sequence. This article describes an operator that determines the median. (more)
category: How To | clicked: 0 | 1 comment | | source: www.blackwasp.co.uk
tags: C#, Linq
4
Shouts

SharePoint 2010 Ribbon customizations not working as expected

published 797 days, 11 hours, 7 minutes ago posted by sandrinosandrino 798 days, 16 hours, 10 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Monday, March 14, 2011 7:19:22 AM GMT
Customizing the SharePoint 2010 isn't a walk in the park. Working with the XML files using CustomActions, CommandUIExtensions, CommandUIDefinitions, ... can get a little annoying after a while, especially if you're re-deploying your feature after each change. While customizing the ribbon today I encountered a very frustrating problem with the ribbon customizations. For each change I made in the Elements.xml and deployed to SharePoint it was as if I didn't change a thing. After numerous attempts I even... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: sandrinodimattia.net
tags: Ribbon, SharePoint 2010
4
Shouts

Coming in ClientUI 5: Versatile Resizable Control for Silverlight & WPF

published 797 days, 11 hours, 7 minutes ago posted by jemmyjemmy 798 days, 13 hours, 55 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Monday, March 14, 2011 9:34:11 AM GMT
A resizable layout control is an essential user interface in today’s modern applications, allowing users to resize a certain section of the interface, or even collapse it entirely to increase screen real estate. Whether you realized it or not, most of the applications you used everyday incorporate a resizable layout, from Windows Explorer, Outlook, to Visual Studio and iTunes. The importance of such fundamental interface motivates us to add a resizable layout control in the next major release of ClientUI... (more)
category: Metro | clicked: 1 | 1 comment | | source: www.intersoftpt.com
tags: Silverlight, clientui, intersoft, webui studio, WPF
4
Shouts

Application Library Caching in Silverlight 4

published 797 days, 11 hours, 7 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 799 days, 19 hours, 1 minute ago
Tuesday, March 15, 2011 12:22:04 PM GMT Sunday, March 13, 2011 4:27:57 AM GMT
Sometime your Silverlight application becomes too larger and creates a bigger XAP file. This causes issue while loading your XAP file for the first time as it increases the loading time for downloading the XAp. So, what will you do in this case? There is one answer: split your application in multiple projects which will create multiple XAPs and then use On Demand downloading feature. Absolutely right, but you may sometime include 3rd party assembly references. In such case, storing them in a separate XA... (more)
category: Metro | clicked: 1 | 1 comment | | source: www.kunal-chowdhury.com
4
Shouts

A Silverlight Resizable TextBlock (and other resizable things) | Colin Eberhardt's Adventures in WPF

published 797 days, 11 hours, 7 minutes ago posted by FantasticMrFishFantasticMrFish 798 days, 12 hours, 9 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Monday, March 14, 2011 11:20:17 AM GMT
In this blog post I present a simple attached behaviour that uses a Thumb control within a Popup to adorn any UI element so that the user can re-size it. A simple feature that has become quite popular on the web is to attache a small handle to text areas so that the user can resize them, this is useful if a user wants to add a large piece of text to a small comment form for example. Interestingly the Google Chrome browser makes all text areas resizeable by default, which leads to web developers wonderin... (more)
category: Metro | clicked: 1 | 2 comments | | source: www.scottlogic.co.uk
4
Shouts

Fluent XML Serialization–Part 1: The Domain Specific Language

published 797 days, 11 hours, 7 minutes ago posted by Matt_TCFMatt_TCF 798 days, 20 hours, 56 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Monday, March 14, 2011 2:32:46 AM GMT
Serializing objects to XML is easy in .NET thanks to the XmlSerializer class, but developers will quickly find that the built-in serializer is limited and not easy to extend. A more flexible approach is needed to support complex serialization needs. Today I’ll show you Fluently-XML’s domain-specific language for configuring serialization behaviors, and I’ll dive (a bit) into how it’s implemented. (more)
category: Architecture | clicked: 2 | 1 comment | | source: trycatchfail.com
tags: Serialization, XML, DSL
4
Shouts

How to get rid from annoying IE warning when you debug a Silverlight application | DevIntelligence

published 797 days, 11 hours, 7 minutes ago posted by adventureradventurer 800 days, 10 hours, 35 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Saturday, March 12, 2011 12:54:08 PM GMT
When you try to open a local file, Internet Explorer gives the following warning: "To help protect your security, Internet Explorer has restricted this webpage from running scripts or ActiveX controls that could access your computer.Click here for options…". (more)
category: Metro | clicked: 1 | 1 comment | | source: devintelligence.com
tags: Silverlight, trick, Debug
5
Shouts

Making the ApplicationBar bindable - Rudi Grobler in the Cloud

published 797 days, 11 hours, 7 minutes ago posted by http://rudigrobler.myopenid.com/http://rudigrobler.myopenid.com/ 798 days, 18 hours, 7 minutes ago
Tuesday, March 15, 2011 12:22:04 PM GMT Monday, March 14, 2011 5:21:51 AM GMT
A short article on how to make the ApplicationBar more MVVM friendly (more)
category: Metro | clicked: 2 | 1 comment | | source: www.rudigrobler.net
tags: WP7
4
Shouts

What to Look in an ORM Solution? - Gil Fink on .Net

published 795 days, 23 hours, 45 minutes ago posted by gilfgilf 798 days, 13 hours, 56 minutes ago
Wednesday, March 16, 2011 11:44:10 PM GMT Monday, March 14, 2011 9:32:23 AM GMT
What to Look in an ORM Solution?What to Look in an ORM Solution? One question that I sometimes being asked is what to look in an ORM solution or more properly which ORM is preferable and why. Since there are many ORMs out there these questions are raised very often. Here is a checklist that will help you to evaluate ORM solutions and to pick the one that fits to your needs. (more)
category: How To | clicked: 0 | 1 comment | | source: blogs.microsoft.co.il
tags: OR/M
7
Shouts

Mindscape giving away 1000 licenses of WP7 Controls

published 795 days, 23 hours, 45 minutes ago posted by traskjdtraskjd 799 days, 1 hour, 24 minutes ago
Wednesday, March 16, 2011 11:44:10 PM GMT Sunday, March 13, 2011 10:05:20 PM GMT
To celebrate the launch of their WP7 control suite Mindscape are giving away $300k worth of licenses to developers for free. Included in the suite is 20 controls to make WP7 development easier: A high performance and diverse charting library, looping list boxes, color selectors, date & time pickers, gauge and a gesture library are all included. Be quick! (more)
category: Architecture | clicked: 1 | 1 comment | | source: www.mindscapehq.com
tags: Windows Phone 7, WP7, phone, Windows Phone 7 Development Tools, Mindscape
4
Shouts

Beyond the Monad fashion: Creating web forms with LINQ

published 795 days, 23 hours, 45 minutes ago posted by http://tomaspetricek.pip.verisignlabs.com/http://tomaspetricek.pip.verisignlabs.com/ 798 days, 5 hours, 59 minutes ago
Wednesday, March 16, 2011 11:44:10 PM GMT Monday, March 14, 2011 5:30:06 PM GMT
Formlets are elegant functional abstraction for describing web forms that encapsulates both rendering and functionality. In this article, we look how to write formlets in C#. Although formlets are not monads, we can still use elegant LINQ syntax. Interestingly, using the join clause... (more)
category: How To | clicked: 1 | 1 comment | | source: tomasp.net
tags: Functional Programming, join, MONAD, CSharp, Linq
5
Shouts

Simulating rain in Silverlight

published 795 days, 23 hours, 45 minutes ago posted by KMilKMil 798 days, 8 hours, 43 minutes ago
Wednesday, March 16, 2011 11:44:10 PM GMT Monday, March 14, 2011 2:45:26 PM GMT
In this article, Lazar Nikolov will try to simulate rain in Silverlight application that can be programmatically configured to meet your expectations. (more)
category: Metro | clicked: 1 | 1 comment | | source: www.silverlightshow.net
6
Shouts

How to publish WP7 applications if you live in the Middle-east & Africa region - Rudi Grobler in the Cloud

published 795 days, 23 hours, 45 minutes ago posted by http://rudigrobler.myopenid.com/http://rudigrobler.myopenid.com/ 797 days, 17 hours, 29 minutes ago
Wednesday, March 16, 2011 11:44:10 PM GMT Tuesday, March 15, 2011 6:00:08 AM GMT
How to publish a WP7 application if the market place do not support your region (more)
category: Metro | clicked: 2 | 1 comment | | source: www.rudigrobler.net
tags: WP7
8
Shouts

jQuery 1.5 Visual Cheat Sheet – Antonio Lupetti

published 803 days, 8 hours, 42 minutes ago posted by StevesSteves 805 days, 1 hour, 44 minutes ago
Wednesday, March 09, 2011 2:46:54 PM GMT Monday, March 07, 2011 9:44:31 PM GMT
jQuery 1.5 Visual Cheat Sheet is the refined and updated version of my popular jQuery Cheat Sheet. The new edition includes all the reference you will ever need for jQuery 1.5 API. Download the PDF file or download it from Scribd.Download the Scribd Version (more)
category: Web Dev | clicked: 1 | comment | | source: woorkup.com
tags: Cheat Sheet, jQuery
8
Shouts

Working With Microsoft Web Helpers In MVC 3 Razor View

published 804 days, 7 hours, 17 minutes ago posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 805 days, 17 hours, 38 minutes ago
Tuesday, March 08, 2011 4:11:34 PM GMT Monday, March 07, 2011 5:50:55 AM GMT
Building applications with ASP.NET MVC 3 and that too with RAZOR is easy. I believe most of the programmers out there found MVC 3 with RAZOR view engine found it easy. The best things I found in the new RAZOR view engine is the code is pretty much tidy no traditional code behinds and moreover you can work with the server-side code with the start of the @ symbol. What is a Helper Class? I am not going to copy and paste the definition from somewhere but I want to write my own thoughts on the helper class... (more)
category: Web Dev | clicked: 5 | comment | | source: midnightprogrammer.net
tags: MVC 3, Razor
8
Shouts

Prism Template Pack 1.4: Now with MEF Support! - David Hill's WebLog - Site Home - MSDN Blogs

published 804 days, 7 hours, 17 minutes ago posted by AlexAlex 805 days, 22 hours, 19 minutes ago
Tuesday, March 08, 2011 4:11:34 PM GMT Monday, March 07, 2011 1:09:44 AM GMT
Quite a few folks have asked for MEF versions of the Prism templates. I’m happy to announce that the Prism Template Pack has now been updated to include MEF (as well as Unity) templates.You can download the latest version of the template pack (version 1.4) from here. You can read the release notes here. Remember to remove the .zip extension (leaving the .vsix extension!) before double-clicking to install the templates... (more)
category: Metro | clicked: 9 | 1 comment | | source: blogs.msdn.com
tags: Unity, Silverlight, MEF, WPF, Prism
8
Shouts

Using Mole 2010 to analyze collections « Josh Smith on WPF

published 804 days, 7 hours, 17 minutes ago posted by AlexAlex 805 days, 22 hours, 22 minutes ago
Tuesday, March 08, 2011 4:11:34 PM GMT Monday, March 07, 2011 1:06:31 AM GMT
When debugging an application it is often necessary to review and analyze the data stored by .NET objects in a collection. Using the standard debugging tools in Visual Studio 2010 to inspect large amounts of in-memory data can be a time consuming task, especially if you need to look at values stored by multiple objects in a collection. For example, if you wanted to look at each Person object in a collection, you might use Visual Studio’s Watch window to inspect each Person object one at a time. You woul... (more)
category: Smart Client | clicked: 1 | comment | | source: joshsmithonwpf.wordpress.com
Previous 1 2 ... 10 11 12 13 14 15 16 17 18 19 ... 90 91 Next