MihirPatel
Name: MihirPatel
Score: 10,492.74
Last Seen: 974 days, 22 hours, 47 minutes ago
Member Since: 11 February, 2009
DotNetShoutout
atom rss
8
Shouts

HanselMinutes - Show #198 - Reactive Extensions for .NET (Rx) with Erik Meijer

published 1226 days, 23 hours, 42 minutes ago posted by mithumithu 1229 days, 11 hours, 9 minutes ago
Monday, February 08, 2010 1:40:11 PM GMT Saturday, February 06, 2010 2:12:23 AM GMT
Scott sits down with Erik Meijer from the Cloud Programmability Team to hear about the Reactive Extensions for .NET (Rx). Rx is a library for composing asynchronous and event-based programs using observable collections. Sound boring? Not even a little. Rx is a prescription for awesome. (more)
category: Podcast | clicked: 0 | 1 comment | | source: www.hanselminutes.com
tags: .NET, Rx, HanselMinutes
8
Shouts

Debugging ASP.NET generated code - David Ebbo

published 1226 days, 23 hours, 42 minutes ago posted by mithumithu 1229 days, 10 hours, 57 minutes ago
Monday, February 08, 2010 1:40:11 PM GMT Saturday, February 06, 2010 2:25:11 AM GMT
This post applies to any ASP.NET app that uses .aspx files, whether WebForms or MVC. When you write an aspx/ascx/master file (I’ll just say aspx for here on, but it applies to all), it gets compiled dynamically by the ASP.NET runtime.  Note that this is true whether you use a Web Site or a Web Application Project (WAP).  While in a WAP, most of the code is built by Visual Studio, the aspx pages themselves... (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.msdn.com
tags: WebForms, David Ebbo, ascx, ASP .NET, WAP, aspx, MVC, ASP.NET
7
Shouts

Performance: Using LCG to copy property values of two objects

published 1226 days, 23 hours, 42 minutes ago posted by gpeipmangpeipman 1229 days, 19 hours, 3 minutes ago
Monday, February 08, 2010 1:40:11 PM GMT Friday, February 05, 2010 6:18:32 PM GMT
Today I gave last performance boost to my property values copying mechanism. I would like to thank my readers Ron and David to remind me Lightweight Code Generation (LCG) and pointing me out aussie bloke blog entry Generic copy object using Lightweight Code Generation. In this posting I will show you last performance boost and put down a summary about my experiment this far. (more)
category: How To | clicked: 1 | comment | | source: weblogs.asp.net
tags: .NET, lcg, C#, Performance
5
Shouts

Test Driven Silverlight Body Snatchers - Jesse Liberty

published 1228 days, 2 hours, 2 minutes ago posted by jantujantu 1229 days, 2 hours, 35 minutes ago
Sunday, February 07, 2010 11:19:44 AM GMT Saturday, February 06, 2010 10:46:45 AM GMT
This posting is part of the Silverlight HyperVideo Platform documentation and a Silverlight Mini-tutorial. The information in this posting, however, should be of interest to anyone writing meaningful Line of Business applications with Silverlight.[This is the first of two parts on Test Driven Development. Part 2 will walk through creating Unit Tests in “real time”]The premise of the classic 1956 film Invasion of the Body Snatchers is that there are “p... (more)
category: Metro | clicked: 0 | comment | | source: blogs.silverlight.net
tags: Mini-Tutorial, Test-Driven, HyperVideoProject, MVVM, Design Patterns
7
Shouts

Technical Jargon » Linq to Sql and ASP.NET MVC – AutoCommit and the RoutePreParser

published 1233 days, 1 hour, 22 minutes ago posted by ali62bali62b 1233 days, 7 hours, 13 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Tuesday, February 02, 2010 6:08:52 AM GMT
This is the second in a series of posts on using ASP.NET MVC with Linq to Sql: Part 1 – DataContext Per RequestPart 2 – AutoCommit and the RoutePreParser In my previoust post, I demonstrated how you could scope a Linq to Sql DataContext to a single HTTP Request by using StructureMap to manage the lifetime of the DataContext instance. This often works well, but has a couple of gotchas. Let’s take a look at an example: publicclass PostController : Controller {privatereadonly BlogDataContext context;   ... (more)
category: Web Dev | clicked: 0 | comment | | source: www.jeremyskinner.co.uk
tags: ASP.NET MVC, Linq To SQL, Linq
8
Shouts

The CodeGain : Step by Step walkthrough to create first application hosted in Windows Azure

published 1233 days, 1 hour, 22 minutes ago posted by ali62bali62b 1233 days, 7 hours, 9 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Tuesday, February 02, 2010 6:12:33 AM GMT
HomeRegistrationArticlesCode SnippetsVideosMessage BoardContact UsAbout UsSearch  Home Step by Step walkthrough to create first application hosted in Windows Azure Windows Azure - General Written by Dhananjay Kumar    Wednesday, 16 December 2009 16:39 Objective This article will give step by step walkthrough ... (more)
category: Architecture | clicked: 0 | comment | | source: www.codegain.com
tags: Windows Azure
6
Shouts

Validating a variable length list, ASP.NET MVC 2-style « Steve Sanderson’s blog

published 1233 days, 1 hour, 22 minutes ago posted by ali62bali62b 1233 days, 7 hours, 15 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Tuesday, February 02, 2010 6:07:03 AM GMT
In the previous post I showed a fairly straightforward way to create an editor where the user can add and delete the items in a set. Please read that previous post before continuing to read this one. But what about validation? We don’t like your blank item names or your negative prices, sonny! As you probably know, ASP.NET MVC 2 supports DataAnnotations attributes out of the box, so you can mark up your model as follows.publicclass Gift {[Required]publicstring Name { get; set; }   [Range(0.01, d... (more)
category: Web Dev | clicked: 0 | comment | | source: blog.stevensanderson.com
tags: ASP.NET MVC, ASP.NET MVC 2
9
Shouts

View Model pattern and AutoMapper in ASP.NET MVC Applications - Shiju Varghese's Blog

published 1233 days, 1 hour, 22 minutes ago posted by ali62bali62b 1233 days, 6 hours, 34 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Tuesday, February 02, 2010 6:48:04 AM GMT
In real world ASP.NET MVC applications, we have to use model objects specially designed for our ASP.NET MVC views. Domain objects are designed for the needs for domain model and it is representing the domain of our applications. On the other hand, View Model objects designed for our needs for views. The below is the domain model of our demo We have a Contact domain entity that has a association with Contact Group. While we creating a new Contact, we have to specify that in which contact... (more)
category: Web Dev | clicked: 14 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ViewModel, AutoMapper
14
Shouts

Innovation Showcase : Silverlight Client for Facebook Released

published 1233 days, 1 hour, 22 minutes ago posted by jbarnesjbarnes 1233 days, 15 hours, 47 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 9:35:00 PM GMT
01 February 2010 Silverlight Client for Facebook Released This application brings together the many compelling platform capabilities of Silverlight 4 into a rich out-of-browser application in the familiar context of Facebook. Enjoy the photos, feeds, events, friends’ walls, and inbox mail from your Facebook account in an appealing and user-friendly environment. Note: Silverlight Client for Facebook is a Silverlight 4 developer preview application. When Silverlight 4 is finally released you may be ... (more)
category: Metro | clicked: 0 | comment | | source: blogs.msdn.com
15
Shouts

Innovation Showcase : RIA Services – Displaying data with Silverlight 4 Beta & Visual Studio 2010

published 1233 days, 1 hour, 22 minutes ago posted by jbarnesjbarnes 1233 days, 16 hours, 49 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 8:33:18 PM GMT
01 February 2010 RIA Services – Displaying data with Silverlight 4 Beta & Visual Studio 2010 NET RIA Services is a set of tools and libraries that make developing data-centric RIA’s (Rich Internet Applications) much, much easier. Basically if you are writing a Silverlight application that will ever need to talk to your back-end servers, then .NET RIA Services will prove to be very useful. Check-out this post by Bruno Terkaly for a great walk-thru: http://blogs.msdn.com/brunoterkaly/archive/20... (more)
category: Metro | clicked: 0 | comment | | source: blogs.msdn.com
16
Shouts

Innovation Showcase : Claims-Identity Guide On-line – Just Released!

published 1233 days, 1 hour, 22 minutes ago posted by jbarnesjbarnes 1233 days, 17 hours, 39 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 7:43:19 PM GMT
01 February 2010 Claims-Identity Guide On-line – Just Released! At last! A comprehensive guide to understanding how Claims-based identity works and how you can use it in these scenarios: Web Single-Sign OnFederationWeb ServicesFederation with Multiple PartnersWindows Azure Claims-based identity means to control the digital experience and to use digital resources based on things that are said by one party about another. A party can be a person, organization, government, Web site, Web service, or eve... (more)
category: Architecture | clicked: 3 | 1 comment | | source: blogs.msdn.com
7
Shouts

Building Windows Machines in Amazon EC2

published 1233 days, 1 hour, 22 minutes ago posted by http://mkennedy66996693.myopenid.com/http://mkennedy66996693.myopenid.com/ 1233 days, 18 hours, 49 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 6:32:36 PM GMT
In this article I'm going to give you a simple, step-by-step overview of how to create a Windows 2008 server image in Amazon's Elastic Cloud Compute (EC2) infrastructure. Now I must admit I'd rather have found a good tutorial on The Internets or even in a book. Feel free to send me any I missed. My experience is they are either dated or about Linux and so on... First, briefly why does one care about EC2? Well maybe you are buying into the whole cloud computing story which lets you cheaply out-source... (more)
category: Web Dev | clicked: 6 | comment | | source: www.michaelckennedy.net
tags: Virtual, Cloud, Amazon, EC2, Amazon EC2
6
Shouts

Saving Files Locally in Silverlight, Page 1 - Kirupa

published 1233 days, 1 hour, 22 minutes ago posted by iftekharahmedamitiftekharahmedamit 1233 days, 20 hours, 21 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 5:01:01 PM GMT
For the first couple of Silverlight releases, what happened in your browser stayed in your browser. If you wanted to do something that went beyond your browser, you needed to rely on some server-side magic. Things changed a bit with Silverlight 3. One of the features added in that version is the ability for you to write your data locally to disk. For an example of this, take a look at the following application, fill in the first/last name fields, and hit the Save button... (more)
category: Metro | clicked: 0 | comment | | source: www.kirupa.com
tags: SL, Silverlight
5
Shouts

Implement MouseWheel support for Silverlight 3 controls

published 1233 days, 1 hour, 22 minutes ago posted by jimmccurdyjimmccurdy 1236 days, 19 hours, 55 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Friday, January 29, 2010 5:26:45 PM GMT
In the upcoming Silverlight 4 release, mousewheel support for controls will be implemented out of the box. However Silverlight 3 still requires you to roll your own mouse wheel support. The following MouseWheelProps class provides generic mousewheel support for all Silverlight controls that support the IScrollProvider interface (ScrollViewer, ListBox, DataGrid) or the IRangeValueProvider interface (Slider). This class implements a single attached property called Enable that can be added directly to ... (more)
category: Metro | clicked: 2 | comment | | source: yinyangme.com
tags: Silverlight, MouseWheel
7
Shouts

Code Tech Blog: Top 10 SEO Techniques For Any Website

published 1233 days, 1 hour, 22 minutes ago posted by hunterz85hunterz85 1236 days, 18 hours, 31 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Friday, January 29, 2010 6:50:31 PM GMT
SEO is such a hot topic these days. How do you get your web site within the first page or two of the search engines? How do you increase your Google page rank? There are companies who dedicate themselves full time to doing SEO at a pretty penny. Something a lot of people can’t necessarily afford to pay for or spend the time on. However, there are some simple things you can do when building your site that will help increase your chances of having good results. In no particular order, below are 10 of these... (more)
category: Architecture | clicked: 0 | comment | | source: codetechblg.blogspot.com
tags: search engine optimisation, Search Engine Optimisation Basics, seo analysis
5
Shouts

Code Tech Blog: Custom Paging in GridView Using LINQ

published 1233 days, 1 hour, 22 minutes ago posted by hunterz85hunterz85 1236 days, 18 hours, 28 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Friday, January 29, 2010 6:53:44 PM GMT
LINQ to SQL is another capability which we can use to manage the relational database object as .net object. We can query, insert, update and delete the underlying database object with these classes. When we query/update/delete these .net object, LINQ to SQL will automatically take care of the underlying relational data objects operations. In short, LINQ to SQL provides an Object-Relational Mapping (O/R Mapping) which maps objects of different type system. In our case, it is relational to object oriented ... (more)
category: Web Dev | clicked: 6 | comment | | source: codetechblg.blogspot.com
tags: Custom Paging, GridView, Linq, Linq Data Source, ASP.NET
7
Shouts

Agile ADO.Net Persistence Layer Download is on CodePlex

published 1233 days, 1 hour, 22 minutes ago posted by http://rlacovara.blogspot.com/http://rlacovara.blogspot.com/ 1236 days, 10 hours, 52 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Saturday, January 30, 2010 2:30:08 AM GMT
I’ve have quite a few requests for sample code so I pulled the AAPL code out of my app, put it in a stripped down ASP.Net MVC sample app and published it on CodePlex.   You will need Visual Studio 2008,  ASP.Net MVC Framework version 1.0, and Sql Server 2008 to run the sample app.  A db backup file is included in the zip and in the source code. You can download the code at: http://aapl.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=39653 (more)
category: Agile | clicked: 1 | 1 comment | | source: rlacovara.blogspot.com
tags: ADO.NET, Business Layer, DTO, Data Access Layer
5
Shouts

Framework Fundamentals - All What Need To Know About .NET | Denis Blog

published 1233 days, 1 hour, 22 minutes ago posted by DioNNiSDioNNiS 1234 days, 17 hours, 8 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Sunday, January 31, 2010 8:14:13 PM GMT
Recently I came across several articles, which describe questions that can be asked at the interview for a job as a .NET developer. For example: What Great .NET Developers Ought To Know (More .NET Interview Questions), ASP.NET Interview Questions, Tech Interviews and ... But usually these questions are left without answers. I want to start series of articles that will help systematize programmer’s knowledge to prepare for an interview or for an exam. (more)
category: How To | clicked: 0 | comment | | source: i-liger.com
tags: .NET, exam, Interview
6
Shouts

Multi-tenancy and ASP.NET MVC

published 1233 days, 1 hour, 22 minutes ago posted by robashtonrobashton 1234 days, 16 hours, 28 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Sunday, January 31, 2010 8:53:29 PM GMT
Multi-tenancy and ASP.NET MVC I spoke about this chestnut briefly at DDD8, and I want to start expanding on the subject. My plan is over the next few weeks to start talking more about multi-tenancy in our web-apps, and to get everybody else doing the same - speaking to other developers after my talk I realised that we're not alone, people are working on solutions but they're just not talking about it. By getting some dialogue going, I hope we can generate a public description of what is good and what ... (more)
category: Web Dev | clicked: 1 | comment | | source: codeofrob.com
tags: Multi-tenancy, Architecture, MVC, ASP.NET
8
Shouts

Cascading DropDownLists With ASP.NET and jQuery « Ramani Sandeep's Blog

published 1233 days, 1 hour, 22 minutes ago posted by sandy060583sandy060583 1234 days, 5 hours, 36 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 7:46:12 AM GMT
Cascading DropDownLists With ASP.NET and jQuery Posted by Ramani Sandeep on January 25, 2010 Cascading drop down lists is a really nice feature for web developers. I thought it was time to write an article on how to do this using ASP.NET and jQuery. Well here’s one way of doing it. Before we get started, this example uses the latest version of jQuery which is 1.3.2. That can be downloaded from here. Read full article here : http://www.dotnet... (more)
category: Web Dev | clicked: 0 | comment | | source: ramanisandeep.wordpress.com
Previous 1 2 3 4 5 6 7 8 9 10 ... 29 30 Next