DaniilHarik
Name: DaniilHarik
Score: 39.03
Last Seen: 1116 days, 3 hours, 24 minutes ago
Member Since: 15 December, 2009
DotNetShoutout
atom rss
9
Shouts

Building a MVC2 Template, Part 7, Custom Web Errors and Adding Support for Elmah | erictopia.com

published 1115 days, 4 hours, 35 minutes ago posted by http://37stars.wordpress.com/http://37stars.wordpress.com/ 1122 days, 1 hour, 24 minutes ago
Monday, May 03, 2010 11:17:12 AM GMT Monday, April 26, 2010 2:28:17 PM GMT
In this installment we’ll add support for our custom web errors and add support for Elmah.Custom Web Errors First we need to write our specs. In the Controllers folder of the Nehemiah.Specs project add a class file named ErrorControllerSpecs.cs. Initially we’ll write a single generic error page. So there will be only a single test. Our specs loo... (more)
category: Web Dev | clicked: 1 | comment | | source: erictopia.com
tags: asp.net mvc2, ELMAH
10
Shouts

Visual Studio 2010 New Features in Debugging – Exciting & Innovative - Code Happiness

published 1240 days, 2 hours, 23 minutes ago posted by codehappinesscodehappiness 1242 days, 5 hours, 33 minutes ago
Tuesday, December 29, 2009 1:29:13 PM GMT Sunday, December 27, 2009 10:19:39 AM GMT
This article talks about Visual Studio 2010’s powerful debugging features applicable from beginner to expert(based on latest VS2010 beta 2). (more)
category: Web Dev | clicked: 0 | comment | | source: www.codehappiness.com
tags: Visual Studio 2010
13
Shouts

ASP.NET MVC 2: Strongly Typed Html Helpers - Scott Guthrie

published 1226 days, 3 hours, 7 minutes ago posted by mithumithu 1227 days, 9 hours, 37 minutes ago
Tuesday, January 12, 2010 12:45:01 PM GMT Monday, January 11, 2010 6:15:17 AM GMT
This is the first in a series of blog posts I’m doing on the upcoming ASP.NET MVC 2 release. This blog post covers the new strongly-typed HTML helpers added with ASP.NET MVC 2. Existing HTML Helper Methods ASP.NET MVC 1 shipped with a set of HTML helper methods that can be used within view templates to help with the generation of HTML UI. For example, to output a textbox you could write code (within your .aspx view template) using the Html.TextBox() helper method below.... (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: Html Helper, ASP.NET MVC 2, UI, HTML UI, ScottGu, ASP.NET MVC 1
11
Shouts

Innovation Showcase : Architect Cafe Webcast - Securing REST-Based Services with Access Control Service

published 1232 days, 5 hours, 40 minutes ago posted by bobfamiliarbobfamiliar 1234 days, 18 hours, 34 minutes ago
Wednesday, January 06, 2010 10:12:08 AM GMT Sunday, January 03, 2010 9:18:16 PM GMT
03 January 2010Architect Cafe Webcast - Securing REST-Based Services with Access Control Service   Securing REST-Based Services with Access Control Service January 15, 2010 at 11:00am – 12:30pm PST Presenter: Michele Leroux Bustamante Abstract:The Access Control Service (ACS), part of Windows Azure platform AppFabric, makes it easy to secure REST-based services using a simple set of standard protocols. In addition to enabling secure calls to REST-based services from any client, the ACS uniquely make... (more)
category: Podcast | clicked: 1 | comment | | source: blogs.msdn.com
tags: Windows Azure AppFabric
15
Shouts

Multiple ModelMetadata Provider support added to ASP.NET MVC Extensibility - Kazi Manzur Rashid

published 1236 days, 3 hours ago posted by MihirPatelMihirPatel 1239 days, 2 hours, 39 minutes ago
Saturday, January 02, 2010 12:51:52 PM GMT Wednesday, December 30, 2009 1:13:19 PM GMT
For last few days I was pushingBrad Wilson to add support for multiple metadata provider in the ASP.NET MVC framework. The reason is very simple, lets say you are developing a relatively large application which has multiple modules, new modules can be plugged-in in future, you do not want all the module developers t... (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ASPNETMVC, Open Source, MVC, ASP.NET
12
Shouts

ASP.NET MVC 2 and why Dynamic Area is not supported - Kazi Manzur Rashid

published 1237 days, 50 minutes ago posted by jantujantu 1239 days, 2 hours, 37 minutes ago
Friday, January 01, 2010 3:02:06 PM GMT Wednesday, December 30, 2009 1:15:28 PM GMT
In my previous post, I mentioned that Area is one of the thing that the coming ASP.NET MVC2 needs heavy enhancements (I also created an Issue in CodePlex). The idea was, Area should have dynamic registering/unregistering support instead of registering all the area at the application start. Recently, I was playing with the Area and trying ... (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ASPNETMVC, MVC, ASP.NET
9
Shouts

Word Automation in C#

published 1243 days, 5 hours, 59 minutes ago posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 1245 days, 4 hours, 24 minutes ago
Saturday, December 26, 2009 9:53:39 AM GMT Thursday, December 24, 2009 11:28:09 AM GMT
Here in this tutorial I have used a word document template and mail merge option of the Word to automate the word document creation. I have use mail merge option to set the fields and make the document fill through my application. We can also set the location of the text that we want to display in the word document programmatically. So to get started we have to first make a template which is a word document template file (.dot file). Open a new word document. Design the template as you like and once... (more)
category: How To | clicked: 4 | comment | | source: www.midnightprogrammer.net
tags: MS Word, .NET Framework, Office, Office Automation, C# .NET
9
Shouts

Protect your .NET Applications/Libraries from 'Reflection'

published 1241 days, 2 hours, 33 minutes ago posted by http://prashantmx.myopenid.com/http://prashantmx.myopenid.com/ 1245 days, 4 hours, 32 minutes ago
Monday, December 28, 2009 1:19:46 PM GMT Thursday, December 24, 2009 11:20:20 AM GMT
As a programmer, you put a lot of effort to create an application and incorporate some unique features in your application, which in turn makes your application more feature rich and different from other applications. The question here is, how do you feel when you come to know that someone has played with your code and then make a same application with his name...You did all the hard work and some random guy on this blue planet stole your code and takes all the credit.....???? Well the answer lies in Ob... (more)
category: How To | clicked: 2 | 1 comment | | source: www.midnightprogrammer.net
tags: obfuscator, Security
14
Shouts

Introducing Fluent MetadataProvider for ASP.NET MVC - Kazi Manzur Rashid's Blog

published 1243 days, 5 hours, 59 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1245 days, 38 minutes ago
Saturday, December 26, 2009 9:53:39 AM GMT Thursday, December 24, 2009 3:13:54 PM GMT
I have just included a Fluent Metadata provider in my open source System.Web.Mvc.Extensibility project. Currently it contains all of the features of the Built-in DataAnnotations Metadata provider that comes with the ASP.NET MVC 2 framework. Consider it as a holiday special from me for the ASP.NET MVC community :-). The main reason I am no... (more)
category: Web Dev | clicked: 4 | comment | | source: weblogs.asp.net
tags: ASPNETMVC
12
Shouts

Try-Catch-FAIL - Exposing the View Model to JavaScript in ASP.NET MVC

published 1244 days, 20 hours, 4 minutes ago posted by Matt_TCFMatt_TCF 1246 days, 9 hours, 22 minutes ago
Thursday, December 24, 2009 7:48:36 PM GMT Wednesday, December 23, 2009 6:30:19 AM GMT
View models make it easy to move data between your views and controllers in a strongly-typed manner, but what's the best way to leverage the view model from JavaScript? This post looks at some of the alternatives and presents a clean, simple way to convert the view model to an equivalent JavaScript object by using JSON on the master page. (more)
category: Web Dev | clicked: 2 | comment | | source: trycatchfail.com
tags: ASP.NET MVC, JSON, ViewModel, JavaScript
10
Shouts

Visual Studio 2010 and .NET 4 Update - Scott Guthrie

published 1249 days, 8 minutes ago posted by jantujantu 1251 days, 4 hours, 48 minutes ago
Sunday, December 20, 2009 3:44:28 PM GMT Friday, December 18, 2009 11:04:01 AM GMT
In October we shipped the public Beta 2 release of Visual Studio 2010 and .NET 4.  The feedback on the new features in VS 2010 and .NET 4 has been really great.  I’ve been working on a blog series about some of them (lots more posts to go!) and have also had a chance to present them to a broad range of audiences – and it has been great hearing the excitement people have about them. At the same time, though, we’ve also received feedback that the performance and virtual memory usage of VS 2010 Beta 2 is n... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, Visual Studio, ScottGu, Community News
9
Shouts

Parallel For Loop : Break Or Stop - Coding N Design

published 1248 days, 2 hours, 6 minutes ago posted by http://sankarsan.myopenid.com/http://sankarsan.myopenid.com/ 1249 days, 8 hours, 12 minutes ago
Monday, December 21, 2009 1:45:49 PM GMT Sunday, December 20, 2009 7:40:07 AM GMT
In my last post I had discussed about Parallel For loops and in what situation it can be useful compared to a sequential loop.In this post we will take a look at how to break or exit from a Parallel For loop.We can use the break or exit keywords for this purpose as Parallel For loop is not programming language construct but a method of the System.Threading.Tasks.Parallel class.... (more)
category: How To | clicked: 0 | 1 comment | | source: codingndesign.com
7
Shouts

What Is The Difference Between an IoC Container and MEF? - Jak Charlton - Insane World - Devlicio.us - Just the Tasty Bits

published 1248 days, 2 hours, 6 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1248 days, 23 hours, 52 minutes ago
Monday, December 21, 2009 1:45:49 PM GMT Sunday, December 20, 2009 4:00:39 PM GMT
What Is The Difference Between an IoC Container and MEF?Combining NHibernate, NH Spatial and SQL Server 2008 Fulltext QueriesWhen NHibernate Won't Do What You Think It ShouldWelcome to Hadi HaririGood Developers Write Good Code, InstinctivelyTags.NETAgileArchitectureASP.NET MVCblogengine.ne... (more)
category: Architecture | clicked: 1 | comment | | source: devlicio.us
tags: IoC, Dependecy Injection, MEF
10
Shouts

Rajan's Blog - Using BitFactory logging in ASP.NET MVC HandleError

published 1246 days, 8 hours, 25 minutes ago posted by rgrajanrgrajan 1248 days, 22 hours, 29 minutes ago
Wednesday, December 23, 2009 7:27:27 AM GMT Sunday, December 20, 2009 5:23:07 PM GMT
Using BitFactory logging in ASP.NET MVC HandleError It is important to have logging enabled in any production site which will be used by the technical team to debug the issues or monitor the health of the site. We chose BitFactory logging (Now the author is calling as Termite) to implement the logging in WCF Services, Business Layer & ASP.NET MVC Sites. Why did we choose BitFactory?It is very easy to implement. Absolutely working with complex categories (we have ... (more)
category: Web Dev | clicked: 11 | comment | | source: blog.rajan.net.in
14
Shouts

Search Engine Optimization (SEO) Toolkit - Scott Guthrie

published 1252 days, 5 hours, 26 minutes ago posted by jantujantu 1254 days, 59 minutes ago
Thursday, December 17, 2009 10:26:45 AM GMT Tuesday, December 15, 2009 2:53:41 PM GMT
[In addition to blogging, I’m also now using Twitter for quick updates and to share links. Follow me at:twitter.com/scottgu] Over the last few weeks I’ve been polling developers to see how many are using the new Search Engine Optimization (SEO) toolkit to increase traffic to their web-sites.  I’ve been surprised by how many people either have never heard of the tool, or have not yet had a chance to run it against their websites.  This blog post provides a quick summary about why anyone doing web-develop... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, IIS7, ScottGu, Community News, ASP.NET
7
Shouts

Organizing ASP.NET MVC solutions - Jimmy Bogard

published 1259 days, 1 hour, 13 minutes ago posted by HusseyHussey 1260 days, 6 hours, 9 minutes ago
Thursday, December 10, 2009 2:39:31 PM GMT Wednesday, December 09, 2009 9:43:17 AM GMT
ASP.NET MVC projects.  I’ve toyed around with quite a few different strategies for structuring projects, and I’m currently settled around one that gives me the most flexibility.  It’s extremely simple: That’s it, two projects.  So what goes in each project?  Let’s first look at the UI project.  The UI project contains only website content and contains no code.  And I mean ... (more)
category: Web Dev | clicked: 1 | comment | | source: www.lostechies.com
tags: ASP.NET MVC, UI, ASP.NET
13
Shouts

Meet my new ASP.NET MVC Extension - System.Web.Mvc.Extensibility - Kazi Manzur Rashid

published 1253 days, 4 hours, 8 minutes ago posted by mithumithu 1255 days, 8 hours, 51 minutes ago
Wednesday, December 16, 2009 11:43:56 AM GMT Monday, December 14, 2009 7:00:56 AM GMT
After hearing Phil Haack and Scott Hanselman in their latest podcast and PDC session I decided to give a good look at the MvcTrubine project in this weekend. I totally agree the intend of this project, let your favorite IoC to rule everywhere, but I do not think it has been implemented in the correct way. There are three important design flaws that I found in MvcTurbine: Generic Component Registration API Rather than allowing you to use your preferred IoC registration features, it prefers to use its own... (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: Unity, ASP.NET MVC, IoC/DI, ASPNETMVC, Ninject, Windsor, Open Source, Autofac, MVC, StructureMap, ASP.NET
10
Shouts

The problem that ViewStateMode solves

published 1254 days, 4 hours, 10 minutes ago posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 1255 days, 23 hours, 51 minutes ago
Tuesday, December 15, 2009 11:41:59 AM GMT Sunday, December 13, 2009 4:01:45 PM GMT
A new feature of ASP.NET 4.0 is the ViewStateMode property on a Control. You can use the ViewStateMode property to enable view state for an individual control even if view state is disabled for the page. Source:Msdn In this post I'll try to give this new feature a chance to shine and show it's use. Problem to solve: Disable ViewState on the Page and enable it on an individual Control. Let's try to solve this without the ViewStateMode property. Simply disable the ViewState on the page and e... (more)
category: Web Dev | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: WebForms, ViewState, ASP.NET