mithu
Name: mithu
Score: -8
Last Seen: 958 days, 13 hours, 41 minutes ago
Member Since: 19 November, 2008
DotNetShoutout
atom rss
12
Shouts

Binding UI Events from View to commands in ViewModel in Silverlight 4

published 1209 days, 12 hours, 43 minutes ago posted by http://roboblob.myopenid.com/http://roboblob.myopenid.com/ 1211 days, 14 hours, 25 minutes ago
Friday, January 29, 2010 10:35:37 AM GMT Wednesday, January 27, 2010 8:53:31 AM GMT
Binding UI Events from View to commands in ViewModel in Silverlight 4 In previous two posts we covered wiring up the Views and ViewModels and Blendability and showing ModalDialogs in MVVM way. Today we will touch another problem that people starting with MVVM very often fail to address properly: Handling the UI Events of the View in the ViewModel while avoiding placing any logic in code behind of the View. So our design goals for this post... (more)
category: Metro | clicked: 1 | comment | | source: blog.roboblob.com
tags: .NET, Silverlight, C#, ViewModel, UI, Silverlight 4, Blend, MVVM, View
9
Shouts

Meta-Me : Tip 51 – How to load EF metadata from arbitrary streams

published 1210 days, 11 hours, 9 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1211 days, 14 hours, 45 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 8:33:08 AM GMT
Tip 51 – How to load EF metadata from arbitrary streams In Tip 45 I showed you how to build a connection string at runtime, which is pretty nifty. The problem with that was that it relies on having metadata files (.csdl .ssdl and .msl) on local disk. But what if they live on a web-server or something and you don’t even have access to the local file system to copy them locally? Well it turns out you can load the metadata from streams too, and this Tip shows you how.Step 1: Get XmlTextReaders for th... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: Metadata, EF 3.5, Entity Framework, EF 4.0, entityframework, Tips
11
Shouts

Security Questions with ASP.NET MVC & fluentHtml

published 1210 days, 11 hours, 9 minutes ago posted by http://derans.myopenid.com/http://derans.myopenid.com/ 1211 days, 16 hours, 52 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 6:26:23 AM GMT
Have you ever needed to create a screen to ask a user to select security questions? Well, I recently had to create this screen and I thought I’d share the experience. (more)
category: Web Dev | clicked: 4 | comment | | source: derans.blogspot.com
tags: ASP.NET MVC, fluentHtml, asp.netmvc, MVC
9
Shouts

JEF CLAES ON .NET AND LIFE: An introduction to ASP.NET Ajax 4: Client Controls

published 1210 days, 11 hours, 9 minutes ago posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 1211 days, 15 hours, 37 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 7:41:54 AM GMT
Client Controls are controls from the Ajax Control Toolkit made available client-side. This means you can now use these awesome controls without using ASP.NET WebForms. You can instantiate these controls imperatively, declaratively or imperatively with jQuery. All controls are exposed as jQuery plugins automatically. You can find these controls in the ExtendedControls script. Example This example shows you how to hook a color picker to an input element using jQuery and the ExtendedContro... (more)
category: Web Dev | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: ASP.NET AJAX 4
10
Shouts

Don’t Repeat Yourself - Gil Fink on .Net

published 1210 days, 11 hours, 9 minutes ago posted by gilfgilf 1211 days, 16 hours, 58 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 6:20:30 AM GMT
Today while I was doing code review I found myself writing a new generic function instead of one piece of code that was repeating itself in the developer’s code. When you write code sometimes you have to duplicate some piece of code. When it occurs, this is the best time to think of refactoring your functionality. (more)
category: How To | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Principles and Patterns, Code Review
9
Shouts

Meta-Me : Tip 52 – How to re-use Types with the Data Services client

published 1209 days, 12 hours, 43 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1210 days, 14 hours, 55 minutes ago
Friday, January 29, 2010 10:35:37 AM GMT Thursday, January 28, 2010 8:23:50 AM GMT
Tip 52 – How to re-use Types with the Data Services client By default when you add a Data Service Service Reference you get automatic code-generation, which produces a strongly typed DataServiceContext and classes for all your ResourceTypes. You can have a look at this generated code if you ‘show all files’ in your project: And then expand your Data Service Reference, it’s dependant Reference.datasvcmap and open up the Reference.cs file: Step 1 – Turn off Code-Gen If however you want to re-use s... (more)
category: Web Dev | clicked: 3 | comment | | source: blogs.msdn.com
tags: Data Services, WCF, Data Services Client
11
Shouts

Hacking Mono.Cecil - allowing invalid opcodes : Paul Mason

published 1210 days, 11 hours, 9 minutes ago posted by tivittivit 1211 days, 14 hours, 26 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 8:52:24 AM GMT
In the last post we took a look at how to manually remove invalid opcodes from an obfuscated assembly. We did this by decompiling the assembly, replacing with the nop opcode and then recompiling. We used this manual method of removing these as Mono.Cecil crashed at the sight of some of the invalid opcodes. In this post we take a look at a tiny "hack" to Mono.Cecil which allows us to do the same thing in an automated manner. (more)
category: Architecture | clicked: 7 | comment | | source: blog.paul-mason.co.nz
tags: hacking, Mono.Cecil
11
Shouts

ADO.NET Data Services Team Blog : Data Services Update for .NET 3.5 SP1 – Now Available for Download

published 1207 days, 3 hours, 30 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1210 days, 14 hours, 40 minutes ago
Sunday, January 31, 2010 7:48:30 PM GMT Thursday, January 28, 2010 8:38:09 AM GMT
Data Services Update for .NET 3.5 SP1 – Now Available for Download Published 27 January 10 05:23 PM | dpblogs  We’re very excited to announce that the “Data Services Update for .NET Framework 3.5 SP1” (formerly known as “ADO Data Services v1.5”) has been re-released and is available for download; the issue with the previous update has been resolved. If your target is Windows7 or Windows 2008 R2 you can pick it up here.  For all other OS versions you can get the release from here. This release targets ... (more)
category: Web Dev | clicked: 1 | comment | | source: blogs.msdn.com
tags: DataServices, Data Service
12
Shouts

Extreme ASP.NET - Text Template Transformation Toolkit and ASP.NET MVC

published 1207 days, 3 hours, 30 minutes ago posted by ali62bali62b 1210 days, 19 hours, 27 minutes ago
Sunday, January 31, 2010 7:48:30 PM GMT Thursday, January 28, 2010 3:51:52 AM GMT
Microsoft Visual Studio includes a code generation engine known as T4 (which is short for Text Template Transformation Toolkit). You’ve probably already used T4 templates in Visual Studio without even knowing they were working behind the scenes. In this article I’m going to give you a basic introduction to T4 templates and show you how ASP.NET MVC uses this technology. I’ll also show you how to customize T4 templates to enhance your day-to-day work with the MVC framework. (more)
category: Web Dev | clicked: 2 | comment | | source: msdn.microsoft.com
tags: ASP.NET MVC, T4, T4 Editor, T4 Templates, T4MVC
9
Shouts

Linq to Sql Generic Repository with AutoMapper

published 1209 days, 12 hours, 43 minutes ago posted by http://derans.myopenid.com/http://derans.myopenid.com/ 1210 days, 15 hours, 55 minutes ago
Friday, January 29, 2010 10:35:37 AM GMT Thursday, January 28, 2010 7:23:48 AM GMT
We, my teammates and I, have been playing with creating a generic repository for Linq to Sql using AutoMapper. We haven’t used it in production or anything, but I figured I’d blog about it and see if anyone has any comments about it. It’s fun just to toy around sometimes. A couple of posts ago, I blogged about Func and that’s going to play an important part in what I’m about to show you. (more)
category: Web Dev | clicked: 26 | comment | | source: derans.blogspot.com
tags: Linq2Sql, AutoMapper
5
Shouts

C# and .NET Tips and Tricks | XNA 2D Basic Collision Detection

published 1210 days, 11 hours, 9 minutes ago posted by ioannisioannis 1211 days, 6 hours ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 5:18:52 PM GMT
An introduction to various methods for 2D collision detection in XNA. (more)
category: How To | clicked: 0 | comment | | source: www.progware.org
tags: XNA
22
Shouts

Silverlight Client for Facebook available - Tim Heuer

published 1209 days, 12 hours, 43 minutes ago posted by jantujantu 1212 days, 13 hours, 53 minutes ago
Friday, January 29, 2010 10:35:37 AM GMT Tuesday, January 26, 2010 9:25:18 AM GMT
Remember the final moments of the Scott Guthrie keynote presentation at PDC09? Where Brian Goldfarb came on stage and demonstrated a completed application using a lot of the features of Silverlight 4? Yeah, that Facebook application. Well, it’s here now... (more)
category: Metro | clicked: 1 | 2 comments | | source: timheuer.com
tags: Silverlight, Facebook, Expression Blend, riaservices, ScottGu, PDC09
4
Shouts

HanselMinutes - Show #196 - .NET 4 CLR, Framework and Language Chat with Jason Olson

published 1208 days, 6 hours, 53 minutes ago posted by mithumithu 1210 days, 15 hours, 42 minutes ago
Saturday, January 30, 2010 4:25:23 PM GMT Thursday, January 28, 2010 7:36:09 AM GMT
Jason Olson works (or worked, as you'll hear) for Microsoft in DPE. In this episode he takes Scott a little deeper into some of the new features in .NET 4, including security, CLR changes, C# 4 and VB 10 improvements and the new Task Parallel Library. (more)
category: Podcast | clicked: 0 | comment | | source: www.hanselminutes.com
tags: .NET, .net 4, C# 4, C#, CLR, Microsoft, VB 10, HanselMinutes, DPE
12
Shouts

Fabulous Adventures In Coding : Why are unused using directives not a warning? - Eric Lippert

published 1211 days, 9 hours, 45 minutes ago posted by jantujantu 1212 days, 13 hours, 49 minutes ago
Wednesday, January 27, 2010 1:33:06 PM GMT Tuesday, January 26, 2010 9:29:20 AM GMT
As I’ve discussed before, we try to reserve warnings for only those situations where we can say with almost certainty that the code is broken, misleading or useless. One reason for trying to ensure that warnings are not “false positives” is that we don’t ever want to encourage someone to take working, correct code and break it so as to remove the warning. Another is that since many people compile with “warnings are errors” turned on, we do not want to introduce a whole lot of unnecessary build breakages ... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: using directive, warnings, C#
9
Shouts

LINQPad updated to support .NET 4.0b2! - Chris Sells

published 1212 days, 9 hours, 45 minutes ago posted by jantujantu 1213 days, 9 hours, 24 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 1:54:05 PM GMT
LINQPad has undergone major reengineering to enable expansion of its provider base. The new version features first-class support for: * SQL Azure cloud databases * ADO.NET Data Services endpoints * SQLite databases and MySQL Enterprise and Community databases (via a library based on Matt Warren's IQueryable toolkit) * Arbitrary Entity Framework providers (by specifying a custom connection string and an EDM) * Your own data sources (via an open extensibility model) (more)
category: How To | clicked: 2 | comment | | source: www.linqpad.net
tags: .net 4, LinqPad
11
Shouts

Innovation Showcase : Streamlining Customer Service with Windows 7 and Multi-Touch

posted by bobfamiliarbobfamiliar 1212 days, 23 hours, 10 minutes ago
Tuesday, January 26, 2010 12:08:30 AM GMT
25 January 2010Streamlining Customer Service with Windows 7 and Multi-Touch How many times have you called your cell phone carrier, or your cable provider and received an automated message to authenticate yourself (phone number, address, etc..)?  Then, the split second you get someone on the phone, they do what?  They ask for your telephone number, or name and address…pretty much the same exact information you just put in via your keypad!  But it continues, because more often than not, they will need to... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
tags: Silverlight, User Experience, Windows 7, web 2.0, Retail Banking, Innovation, Surface, financial services, developer, WPF, UX, Software plus Services, Visual Studio, Multi-Touch, Expression Studio
10
Shouts

UK Application Development Consulting - Silverlight, MVVM and Validation Part III

published 1210 days, 11 hours, 9 minutes ago posted by jantujantu 1212 days, 9 hours, 2 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Tuesday, January 26, 2010 2:16:24 PM GMT
I've been working with Silverlight 3 in a number of LoB (Line of Business) scenarios for a while now and I'm consistently running in to a few dead ends with respect to Validation. Given I've posted twice before on Silverlight, MVVM and Validation: Silverlight Validation and ViewModelSilverlight, Validation and MVVM - Part III thought it only right to point out some of the shortcomings of these approaches and Silverlight 3 itself. The problem arises from the exc... (more)
category: Metro | clicked: 2 | 1 comment | | source: blogs.msdn.com
tags: Silverlight, Josh Twist, MVVM
10
Shouts

dnrTV - Show #164 - Sahil Malik on Developing for SharePoint 2010 Part 2

published 1210 days, 11 hours, 9 minutes ago posted by mithumithu 1211 days, 22 hours, 11 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Wednesday, January 27, 2010 1:07:23 AM GMT
Sahil Malik is back on dnrTV with more great demos in SharePoint 2010. This time Sahil focuses mainly on the database side of the newest version of SharePoint including structure and scalability. (more)
category: Screencast | clicked: 2 | comment | | source: www.dnrtv.com
tags: SharePoint 2010, dnrTV, Sharepoint
9
Shouts

DotNetRocks - Show #519 - oData

published 1210 days, 11 hours, 9 minutes ago posted by mithumithu 1212 days, 4 hours, 20 minutes ago
Thursday, January 28, 2010 12:09:39 PM GMT Tuesday, January 26, 2010 6:58:06 PM GMT
Carl and Richard get the word on oData from Brad Abrams, Bob Dimpsey and Lance Olson. (more)
category: Podcast | clicked: 0 | comment | | source: www.dotnetrocks.com
tags: DotNetRocks, OData
8
Shouts

Silverlight 4 Desktop Drag and Drop + Silver Sky

published 1212 days, 9 hours, 45 minutes ago posted by KMilKMil 1213 days, 9 hours, 15 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 2:03:12 PM GMT
In this article Braulio Diez covers the basics of this functionality, digs into a more complex sample, and gives you guidance on some common drag and drop scenarios. (more)
category: Metro | clicked: 1 | comment | | source: www.silverlightshow.net
Previous 1 2 ... 6 7 8 9 10 11 12 13 14 15 16 17 Next