glennen

Stories kicked by glennen

ASP.NET MVC - MvcSiteMapProvider 2.0 is out!(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 11 months ago

MvcSiteMapProvider is, as the name implies, an ASP.NET MVC SiteMapProvider implementation for the ASP.NET MVC framework. Targeted at ASP.NET MVC 2, it provides sitemap XML functionality and interoperability with the classic ASP.NET sitemap controls, like the SiteMapPath control for rendering breadcrumbs and the Menu control. Based on areas, controller and action method names rather than hardcoded URL references, sitemap nodes are completely dynamic based on the routing engine used in an application. The dynamic character of ASP.NET MVC is followed in the MvcSiteMapProvider: there are numerous extensibility points that allow you to extend the basic functionality offered. read more...

add a comment |category: |Views: 222

tags: another

Efficient workflow with Linq to Sql using Migrator, T4 and some Xslt(devcarl.posterous.com)

submitted by glennenglennen(310) 2 years ago

Linq to SQL is still my favorite datalayer, why? Excellent Linq capabilities and the fact that I only have to change my database once, and my code/entities will be immediately reflected. How? First, download MigratorDotNet, it's a utility for database migrations, which versions your database changes in code: http://code.google.com/p/migratordotnet/wiki/GettingStarted. Create a new library in your solution and start writing migratio... read more...

add a comment |category: |Views: 21

tags: another

Asp.Net MVC and the Microsoft Chart Controls in .NET 4.0(devcarl.posterous.com)

submitted by glennenglennen(310) 2 years ago

In .NET 4 the Chart Controls has become a part of the framework so there is not a separate download as to .NET 3.5. In this post I will show how to integrate them with Asp.Net MVC on .NET 4 because there are some changes from .NET 3.5. Also the most examples on the web suggests that you should output the resulting image directly from the Controller, I will show you how to take use of the full capabilities of Chart Controls and let it render it's own html, including <map>. read more...

add a comment |category: |Views: 138

tags: another

AutoMapper 1.1 released(www.lostechies.com)

submitted by glennenglennen(310) 2 years ago

Today Jimmy Bogard pushed out the 1.1 release of AutoMapper. read more...

add a comment |category: |Views: 13

tags: another

How to use jQuery UI Autocomplete with Asp.Net MVC(devcarl.posterous.com)

submitted by glennenglennen(310) 2 years, 1 month ago

Carl show how to get jQuery UI's new Autocomplete widget play with Asp.Net MVC: read more...

add a comment |category: |Views: 215

tags: another

Hidden C# feature - string.Format Width(blog.prabir.me)

submitted by prabirshresthaprabirshrestha(862) 2 years, 1 month ago

Hidden C# feature string.Format width read more...

add a comment |category: |Views: 1026

tags: another

Calling an Interface Method using IronRuby in C#(blog.runxc.com)

submitted by runxc1runxc1(220) 2 years, 2 months ago

Using IronRuby can be a lot of fun and with this little snippet you can get up and writing IronRuby that is designed to be hosted inside a .Net application. Just a decent sample of how to use a .Net Interface to ease calling IronRuby methods from C# read more...

add a comment |category: |Views: 74

tags: another

How to use Ajax Library 4 AutoComplete with Asp.Net MVC(devcarl.posterous.com)

submitted by glennenglennen(310) 2 years, 2 months ago

How to use Ajax Library 4 AutoComplete with Asp.Net MVC. read more...

add a comment |category: |Views: 38

tags: another

Asp.Net MVC 2 and automatic stringlength validation using Linq to SQL(devcarl.posterous.com)

submitted by glennenglennen(310) 2 years, 2 months ago

This snippet of code gets the max string length for MVC 2 validation model from the database schema automatically using the attributes which Linq to SQL uses. read more...

add a comment |category: |Views: 59

tags: another

Behavior Driven Development (BDD) with SpecFlow and ASP.NET MVC(blog.stevensanderson.com)

submitted by desmonddesmond(2014) 2 years, 2 months ago

How does BDD compare with TDD, and how can you use BDD-style tools such as Cucumber and SpecFlow with ASP.NET MVC? Steve Sanderson considers the options, and provides an example of combining ASP.NET MVC 2, SpecFlow, and WatiN. read more...

1 comment |category: |Views: 556

tags: another

Progressive Enhancement in Web Applications(blogs.southworks.net)

submitted by juliandominguezjuliandominguez(120) 2 years, 3 months ago

Progressive Enhancement (PE) is an approach for building Web Applications that starts from the perspective that a user browser experience will support a minimum functionality, this is called base line, but has hooks to allow functional enhancements when a browser can support them. PE benefits users by supporting older browsers, but also supporting users with modern browsers and technologies by providing them an improved experience. The progressive enhancement and its counterpart, Graceful Degradation, are approaches that can help rich Web Applications support more browsers and have a wider reach. read more...

add a comment |category: |Views: 17

tags: another

ASP.NET MVC 2 Localization complete guide(adamyan.blogspot.com)

submitted by Alik.AdamyanAlik.Adamyan(135) 2 years, 3 months ago

This is a full guide for localizing asp.net mvc 2 web application covering following aspects: views localization, simple culture switching mechanism, model validation messages localization, DisplayName attribute localization and problem solving with caching(OutputCache) and localization. read more...

add a comment |category: |Views: 2508

tags: another

ASP.NET MVC 2 RC 2 Released(haacked.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 3 months ago

After receiving feedback from our last release candidate back in December, we decided it would be prudent to have one more release candidate that incorporated the feedback. You can read the release notes for everything that changed, there’s not a whole lot. read more...

add a comment |category: |Views: 227

tags: another

Using FullCalendar jQuery component with ASP.NET MVC(weblogs.asp.net)

submitted by gpeipmangpeipman(3145) 2 years, 3 months ago

I found very good jQuery component called FullCalendar. My special favorites are agenda views because they make this calendar really useful in business applications. In this posting I will show you how to use FullCalendar with ASP.NET MVC. read more...

add a comment |category: |Views: 224

tags: another

Validating a variable length list, ASP.NET MVC 2-style(blog.stevensanderson.com)

submitted by glennenglennen(310) 2 years, 3 months ago

Steve Anderson follow up article on how to validate a variable elgnth list in MVC 2. read more...

1 comment |category: |Views: 254

tags: another

Editing a variable length list, ASP.NET MVC 2-style(blog.stevensanderson.com)

submitted by glennenglennen(310) 2 years, 3 months ago

A while back I posted about a way of editing a list of items where the user can add or remove as many items as they want. Tim Scott later provided some helpers to make the code neater. Now, I find myself making use of this technique so often that I thought it would be worthwhile providing an update to show how you can do it even more easily with ASP.NET MVC 2 because of its strongly-typed and templated input helpers. read more...

add a comment |category: |Views: 39

tags: another