DotNetShoutout - Latest published stories
7
shouts

Yet another developer blog: 'Unobtrusive' asynchronous Form in ASP.NET MVC

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 55 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:05:04 AM GMT
I have already written how to create asynchronous form using jQuery Validation plugin, but I have made a few shortcuts in that sample. So this is the for some improvements. We will start with ViewModel class: public classAsynchronousFormViewModel: IDataErrorInfo {   #region Fields   privateIUsersRepository _usersRepository = null;   #endregion   #region Properties   public string UserName { get; set; }   public string Email { get; set; }   public string Password { get; set; }   publi... (more)
category: ASP.NET | clicked: 54 | comment | | source: tpeczek.blogspot.com
tags: ASP.NET MVC, jQuery, Validation
6
shouts

ASP.NET Regenerate .designer.cs

published 9 hours, 16 minutes ago posted by http://etremblay.myopenid.com/http://etremblay.myopenid.com/ 1 day, 6 hours, 4 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Monday, February 08, 2010 6:55:21 PM GMT
Your ASPX or ASCX .designer.cs file stopped being generated by Visual Studio and you don't know why? Here is a little trick for you. (more)
category: ASP.NET | clicked: 42 | comment | | source: blog.lavablast.com
7
shouts

Multi-tenancy in ASP.NET MVC - Views with a ViewEngine

published 9 hours, 16 minutes ago posted by robashtonrobashton 15 hours, 41 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 9:18:55 AM GMT
Carrying on the series by talking about View Engines and how to use one to allow modules to provide their own views (more)
category: ASP.NET | clicked: 51 | comment | | source: codeofrob.com
tags: ASP.NET MVC, Multi-tenancy
7
shouts

Innovation Showcase : Visual Studio 2010 Release Candidate Offers “Go Live” Option

published 9 hours, 16 minutes ago posted by jbarnesjbarnes 1 day, 3 hours, 16 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Monday, February 08, 2010 9:43:53 PM GMT
08 February 2010 Visual Studio 2010 Release Candidate Offers “Go Live” Option Check-out this blog post from the Visual Studio 2010 team where they have announced that the Release Candidate of Visual Studio 2010 and the .NET Framework 4 will be supported as a “go live” release.  This means that VS2010 RC has met high standards of quality for pre-release software, and we are licensing it for developing and deploying production applications. Can’t wait to get started?  You now have permission to use V... (more)
category: Foundation | clicked: 39 | comment | | source: blogs.msdn.com
5
shouts

Life as a Microsoft Engineer : Quick Tips About ASP.NET MVC – UI Helpers and Templates

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 44 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:15:37 AM GMT
Quick Tips About ASP.NET MVC – UI Helpers and Templates One very interesting addition to MVC 2 is the power to assign templates to fields in your classes and make the rendering suit your needs. The advantage is that, if you need to display the same field in several views, you can benefit from a one-stop place where you can customize its display and have all views automatically updating based on it. Let’s take a look at this model that will be used to render my view: publicclassAuthor {     publicstr... (more)
category: ASP.NET | clicked: 36 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC
6
shouts

Life as a Microsoft Engineer : Quick Tips About ASP.NET MVC – Editor Templates

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 43 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:16:30 AM GMT
Quick Tips About ASP.NET MVC – Editor Templates In the last quick tip, I showed off how you can use the UIHint data annotation to specify a custom template for rendering of a particular field. An important part of that mechanism is the DisplayFor strongly-typed html helper that was introduced in ASP.NET MVC 2. As mentioned before, we can also use the EditorFor html helper to format the rendering of a field in an Edit view. In this example, we will use the model we created in the last tip: publicclassA... (more)
category: ASP.NET | clicked: 39 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC
5
shouts

Life as a Microsoft Engineer : ASP.NET MVC Quick Tips – Pass data to your master page

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 45 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:14:31 AM GMT
ASP.NET MVC Quick Tips – Pass data to your master page While I was preparing another demo, I ran into an interesting problem that hadn’t occurred to me before. I was building a sample e-commerce site and thought it would be nice to always display the category list on the left hand side of every page. The first way I could think of was always passing that data in every action method, but that seemed to be a brute force approach that lack any sort of elegance (not to mention poor application design). So... (more)
category: ASP.NET | clicked: 51 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC
6
shouts

MVC 2 Editor Template with DateTime

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 59 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:00:34 AM GMT
One of the cool new features of MVC 2 is the ability to automatically pick an editor template based on the meta data of each property. This meta data can be as simple as the data type of the property itself.  Take an example where we have a Contact object that has a DateTime? property for DateOfBirth. 1: publicpartialclass Contact 2: { 3: [DisplayName("First Name")] 4: publicstring FirstName { get; set; } 5: 6: [DisplayName("Last Name")] 7: publicstring LastName { get; set; ... (more)
category: ASP.NET | clicked: 29 | comment | | source: geekswithblogs.net
tags: ASP.NET MVC, ASP.NET MVC 2
5
shouts

Ricka on MVC & Dynamic Data : Using the BeginMethod/EndMethod pattern with MVC

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 52 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:07:48 AM GMT
Using the BeginMethod/EndMethod pattern with MVC If your asynchronous action method calls a service which exposes methods using the BeginMethod() / EndMethod() pattern , your callback will be executed on a thread which is not under the control of ASP.NET. Some consequences of this are that HttpContext.Current will be null, and there will be race conditions accessing members like AsyncManager.Parameters. To restore HttpContext.Current and eliminate the race condition, call AsyncManager.Sync() from wi... (more)
category: ASP.NET | clicked: 26 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC, ASP.NET MVC 2
5
shouts

Ricka on MVC & Dynamic Data : MVC FAQ

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 50 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:09:17 AM GMT
MVC FAQ Please post corrections/submissions to the MVC Forum. Include MVC FAQ in the title. Post LINQ to SQL To SQL Questions here  Post Entity Framework Questions here Q: How do I get started with MVC?Walkthrough: Creating a Basic MVC Project with Unit Tests in Visual StudioWalkthrough: Using Templated Helpers to Display Data Includes a VB/C# sample. (Requires MVC 2) ASP.NET MVC 2 application in Visual Studio 2010How to: Validate Model Data Using DataAnnotations Attributes  (Shows how to use Entity F... (more)
category: ASP.NET | clicked: 35 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC, ASP.NET MVC 2
6
shouts

Life as a Microsoft Engineer : ASP.NET MVC Quick Tips – What should my Model be?

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 47 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:12:29 AM GMT
ASP.NET MVC Quick Tips – What should my Model be? This question is interesting, and it is actually a bunch of questions bunched up together. It took me a while to figure out why I was getting so many questions around this topic but I finally figured it out. Most of the sessions around MVC and even most of the samples you find online are built over an Entity Framework or a Linq to SQL model. My session demos also rely on Entity Framework as a quick and reliable way of getting around the nasty subject of... (more)
category: ASP.NET | clicked: 27 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC, model
5
shouts

ASP.NET MVC Complex Object ModelMetaData Issue

published 9 hours, 16 minutes ago posted by ironkittenironkitten 19 hours, 56 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:03:51 AM GMT
Tuesday, February 09, 2010 5:06 AM kazimanzurrashid ASP.NET MVC Complex Object ModelMetaData Issue One of the exciting feature of ASP.NET MVC is(?) auto generating the view of the model with DisplayForModel/EditorForModel statement, it gives a nice extension point for the application developers to customize the view. But in the latest release (MVC2 RC2), it looks like the feature is no longer available. No, those methods are still available, ... (more)
category: ASP.NET | clicked: 25 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC 2.0
6
shouts

Default Values in ASP.NET MVC Action Parameters - David Hayden

published 9 hours, 16 minutes ago posted by ali62bali62b 20 hours, 9 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 4:50:25 AM GMT
You can’t help but notice the impact System.ComponentModel and System.ComponentModel.DataAnnotations have had on ASP.NET MVC 2. The DefaultModelBinder now supports all the validation attributes when doing model binding. The new template helpers in ASP.NET MVC 2, Html.DisplayFor, Html.EditorFor, Html.LabelFor, etc. use various attributes that affect the display of complex objects and their individual properties. And, as I will mention here quickly, you can also use the DefaultValue Attribute in System.Com... (more)
category: ASP.NET | clicked: 35 | comment | | source: www.davidhayden.me
tags: ASP.NET MVC, ASP.NET MVC 2, C# 4
5
shouts

Life as a Microsoft Engineer : ASP.NET MVC Quick Tips – How do I pass data to a view?

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 46 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:13:31 AM GMT
ASP.NET MVC Quick Tips – How do I pass data to a view? In the last “Quick Tip” we talked about the model and we pretty much reached the conclusion that it can be anything. After all, as long as the View that we pass the model to can interpret it and render it, it’s all good. In any case, there are two simple ways of passing data to a view: ·        ViewData dictionary ·        Passing it as a parameter on the controller’s action method Let’s look at both cases: Create a new ASP.NET MVC Application.... (more)
category: ASP.NET | clicked: 35 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC
5
shouts

Life as a Microsoft Engineer : ASP.NET MVC Quick Tips – Can I change the templates?

published 9 hours, 16 minutes ago posted by ali62bali62b 19 hours, 45 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 5:15:05 AM GMT
ASP.NET MVC Quick Tips – Can I change the templates? So, you’re using ASP.NET MVC and having a blast (at least I hope you are). If you are anything like me (and most developers), your design skills are pretty much non-existent. That’s why there are designers working in most web applications. But anyway, if they keep complaining about the structure of the html you hand them, you can do something to ease their pain (and yours). For simplicity, let’s say they complaint about the views you generate using t... (more)
category: ASP.NET | clicked: 36 | comment | | source: blogs.msdn.com
tags: ASP.NET MVC
6
shouts

Innovation Showcase : A Tour Through the Parallel Programming Samples for .NET 4

published 9 hours, 16 minutes ago posted by jbarnesjbarnes 1 day, 2 hours, 23 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Monday, February 08, 2010 10:36:22 PM GMT
08 February 2010 A Tour Through the Parallel Programming Samples for .NET 4 Now that the “Release Candidate” of Visual Studio 2010 and the NET 4.0 Framework is just around the corner – it’s time to get with the new economy and see how you can “Do More With Less” with the Parallel Extensions for the .NET Framework.  The Parallel Extensions team has recently released a plethora of samples on the MSDN Code Gallery that highlight aspects of the .NET Framework 4 that help with writing scalable and effi... (more)
category: Architecture | clicked: 32 | comment | | source: blogs.msdn.com
6
shouts

Innovation Showcase : SQL Server 2008 R2 Update for Developers Training Kit Released

published 9 hours, 16 minutes ago posted by jbarnesjbarnes 1 day, 4 hours, 7 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Monday, February 08, 2010 8:52:18 PM GMT
08 February 2010 SQL Server 2008 R2 Update for Developers Training Kit Released Looking for some great free SQL Server 2008 R2 training so you can get ramped-up quickly on all the new features and functionality? SQL Server 2008 R2 offers an impressive array of capabilities for developers that build upon key innovations introduced in SQL Server 2008. The SQL Server 2008 R2 Update for Developers Training Kit is ideal for developers who want to understand how to take advantage of the key improvements ... (more)
category: Foundation | clicked: 30 | comment | | source: blogs.msdn.com
6
shouts

Innovation Showcase : Mind-Mapping Software Builds on Windows 7 to Improve User Productivity

published 9 hours, 16 minutes ago posted by zhimingzhiming 1 day, 4 hours, 17 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Monday, February 08, 2010 8:43:08 PM GMT
08 February 2010Mind-Mapping Software Builds on Windows 7 to Improve User Productivity Mindjet, a California based high-tech and electronics manufacturing company with 170 employees, needed to incorporate natural and intuitive methods to a new release of its visual productivity tool “MindManager.” Their decision was to build the new release on Windows 7 to provide several new and improved features using Windows Touch with custom gestures, Windows Taskbar previews, and Jump Lists. Read this case study to... (more)
category: Architecture | clicked: 29 | comment | | source: blogs.msdn.com
6
shouts

Visual Studio 2010 RC is available

published 9 hours, 16 minutes ago posted by gpeipmangpeipman 15 hours, 25 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Tuesday, February 09, 2010 9:34:44 AM GMT
VS2010 RC is out now and available for MSDN users since now. Other guys have to wait until tomorrow when VS2010 RC is made publically available. Reading first news I discovered that most important thing is hardly improved performance of VS2010 RC IDE. All your feedback is welcome to VS2010 RC Connect site. (more)
category: Foundation | clicked: 38 | comment | | source: weblogs.asp.net
tags: .NET Framework 4.0, Visual Studio 2010
5
shouts

New Tools for Windows Azure

published 9 hours, 16 minutes ago posted by wzackwzack 1 day, 7 hours, 26 minutes ago
Tuesday, February 09, 2010 3:43:56 PM GMT Monday, February 08, 2010 5:33:23 PM GMT
On February 1st we released the latest version of the Windows Azure Tools and SDK Version 1.1. This release adds support for Windows Azure mountable Drives as well as numerous bug fixes. (more)
category: Architecture | clicked: 27 | comment | | source: blogs.msdn.com
Previous 1 2 3 4 5 6 7 8 9 10 ... 352 353 Next