Noldorin

Stories kicked by friends of Noldorin

Object Pipelines(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 2 days, 7 hours ago

A pipeline is a chain of connected steps that process information. In object pipelines, each step receives an object and performs an action using it before passing an object to the next step. This repeats until every step is complete. read more...

add a comment |category: |Views: 110

tags: another

Introduction to ASP.NET MVC Part 2: Creating a Hello World Site in MVC(www.youtube.com)

submitted by SymetriXSymetriX(25) 2 days, 17 hours ago

In this video I make a simple Hello World site using ASP.NET MVC 4 (but the steps will still work in MVC 3 as well) read more...

add a comment |category: |Views: 3

tags: another

SQL Data Decimation by Date Range and Nth Record(www.arroyocode.com)

submitted by ArroyocodeArroyocode(101) 3 days ago

Data decimation (aka Down Sampling) of large SQL datasets allows application to quickly visualize trends in data over large historical periods greatly improving application performance. Combining a custom date range and a SQL Modulo operator, quickly and evenly display long periods of data. read more...

3 comments |category: |Views: 55

tags: another

SQL Data Decimation by Date Range and Nth Record(www.arroyocode.com)

submitted by ArroyocodeArroyocode(101) 3 days ago

Data decimation (aka Down Sampling) of large SQL datasets allows application to quickly visualize trends in data over large historical periods greatly improving application performance. Combining a custom date range and a SQL Modulo operator, quickly and evenly display long periods of data. read more...

3 comments |category: |Views: 55

tags: another

SQL Data Decimation by Date Range and Nth Record(www.arroyocode.com)

submitted by ArroyocodeArroyocode(101) 3 days ago

Data decimation (aka Down Sampling) of large SQL datasets allows application to quickly visualize trends in data over large historical periods greatly improving application performance. Combining a custom date range and a SQL Modulo operator, quickly and evenly display long periods of data. read more...

3 comments |category: |Views: 55

tags: another

When to throw exceptions(blog.gauffin.org)

submitted by jgauffinjgauffin(150) 3 days, 1 hour ago

Explains what "exceptional" means and when you should throw exceptions. read more...

1 comment |category: |Views: 214

tags: another

IronJSMVC: Script ASP.NET MVC in JavaScript using IronJS(pietschsoft.com)

submitted by pwhe23pwhe23(972) 3 days, 3 hours ago

Personally, I enjoy writing much of my applications using a statically typed language such as C#. However, I would really prefer to be able to write UI logic and script certain parts of my applications using a dynamic language if I could. I was thinking about this and the following question came to mind: What would it be like to write an ASP.NET MVC application entirely using JavaScript? read more...

add a comment |category: |Views: 5

tags: another

Attribute based routing in ASP.NET Web API(www.strathweb.com)

submitted by fdubfdub(281) 3 days, 10 hours ago

The AttributeRouting library has been extended to support ASP.NET Web API, and is now available on NuGet. Let's have a look at how it can immediately make your life easier and drastically improve the way you handle your routes. read more...

1 comment |category: |Views: 125

tags: another

Extract to User Control in visual studio11(www.dotnetjalps.com)

submitted by jalpeshjalpesh(1347) 3 days, 12 hours ago

I have been playing with Visual Studio 11 beta recently and everyday I am amazed with new features of it. Today I have found one more very useful feature Extract to User Control feature. In large projects, we are having large pages and its always good to user control(.ascx) but sometimes we are so lazy to create user controls and we remain with the whole page and even we can’t reuse that code. In similar kind of situation ‘Extract to user control’ can be quite useful. Suppose we have long HTML mark up and we need to convert one div to user control and then we can do it very easily with Visual Studio 11 beta Extract to User Control feature. read more...

1 comment |category: |Views: 49

tags: another

9 Steps You Can Take to Start Weaning Yourself off Web Forms(www.rogerharford.com)

submitted by SymetriXSymetriX(25) 3 days, 14 hours ago

ASP.NET MVC is seeing a lot of enthusiasm from the community right now, but not everyone is fortunate enough to be able to make the switch right away. Some of you may be maintaining large applications where a full rewrite is not possible, or at least not in the immediate future. That doesn’t mean there aren’t steps you can take to get your code ready for an eventual transition to MVC. read more...

2 comments |category: |Views: 206

tags: another

ASP.NET MVC Performance Profiling(www.adathedev.co.uk)

submitted by AdaTheDevAdaTheDev(123) 3 days, 17 hours ago

The benefits of using MiniProfiler for profiling an ASP.NET / ASP.NET MVC application read more...

add a comment |category: |Views: 8

tags: another

Asp.Net Validation Of ViewState MAC Failed(www.csharpaspnetarticles.com)

submitted by amit.jainamit.jain(1181) 3 days, 23 hours ago

If you are receiving Validation of viewstate MAC failed error in asp.net web application. read more...

add a comment |category: |Views: 4

tags: another

MVC Strongly-Typed Action Helpers - They're Back!(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 4 days, 2 hours ago

Way back in 2009, the MVC Futures assembly introduced “strongly-typed action helpers”. They allowed you to render links using lambda expressions pointing directly to the actions on your controller, rather than using strings. Here's an alternative implementation that aims to resolve some of the performance issues they had. read more...

1 comment |category: |Views: 183

tags: another

MVC Strongly-Typed Action Helpers - They're Back!(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 4 days, 2 hours ago

Way back in 2009, the MVC Futures assembly introduced “strongly-typed action helpers”. They allowed you to render links using lambda expressions pointing directly to the actions on your controller, rather than using strings. Here's an alternative implementation that aims to resolve some of the performance issues they had. read more...

1 comment |category: |Views: 183

tags: another

Using ASP.NET MVC 4, ApiControllers and SQL Server 2012(galratner.com)

submitted by galratnergalratner(334) 4 days, 10 hours ago

ASP.NET MVC continues to innovate and in its current version (4) it offers support for Web APIs. Today we are going to examine a real life scenario of using Web APIs along with MVC 4 as we are utilizing the Google Earth plug-in to mark a defined area and SQL Server 2012 geography type to help us persist and calculate GIS data. In our example we are going to mark an area on the globe using a polygon, calculate the center of the area, find all of the coffee shops closest to the center of the area and arrange them by distance. We are going to mark them on the map as well as show a full list including ranking. read more...

add a comment |category: |Views: 175

tags: another

Using ASP.NET MVC 4, ApiControllers and SQL Server 2012(galratner.com)

submitted by galratnergalratner(334) 4 days, 10 hours ago

ASP.NET MVC continues to innovate and in its current version (4) it offers support for Web APIs. Today we are going to examine a real life scenario of using Web APIs along with MVC 4 as we are utilizing the Google Earth plug-in to mark a defined area and SQL Server 2012 geography type to help us persist and calculate GIS data. In our example we are going to mark an area on the globe using a polygon, calculate the center of the area, find all of the coffee shops closest to the center of the area and arrange them by distance. We are going to mark them on the map as well as show a full list including ranking. read more...

add a comment |category: |Views: 175

tags: another