Lakario

Stories submitted by Lakario

Signup for MvcConf – Virtual ASP.Net MVC Conference(www.lostechies.com)

submitted by LakarioLakario(115) 1 year, 10 months ago

MvcConf is a online conference where you can learn about real experiences creating MVC applications as well about what the future holds for creating asp.net apps based on MVC. I have scheduled community members to present on intro and advanced topics using MVC2 and we have some Microsoft product members who will talk about some of the new stuff coming out soon. read more...

add a comment |category: |Views: 12

tags: another

ASP.NET - Redirect Module(blog.nathan-taylor.net)

submitted by LakarioLakario(115) 1 year, 11 months ago

ASP.NET HttpModule to handle request redirection. Uses the website configuration file to define each rule and provides a quick and easy way to create application-wide 301 redirects and URL Rewrites in a declarative fashion. read more...

add a comment |category: |Views: 14

tags: another

ASP.NET MVC – Flags Enumeration Model Binder(blog.nathan-taylor.net)

submitted by LakarioLakario(115) 1 year, 11 months ago

ASP.NET MVC custom model binder to handle binding multiple enumeration values of a flags enumeration type into a single value. read more...

add a comment |category: |Views: 96

tags: another

How to Make a Tag Cloud in ASP.NET MVC(blog.nathan-taylor.net)

submitted by LakarioLakario(115) 2 years, 1 month ago

Tutorial discussing how to build a tag cloud using ASP.NET MVC and an HtmlHelper accepting a collection of tag names and their frequencies. read more...

add a comment |category: |Views: 35

tags: another

ASP.NET MVC2 RC2 - Breaking Area Registration Change(lakario.blogspot.com)

submitted by LakarioLakario(115) 2 years, 3 months ago

The ASP.NET MVC failed to mention a breaking change in their release notes for MVC2 RC2 that may effect those using single project areas instead of separate projects per area. read more...

add a comment |category: |Views: 178

tags: another

ASP.NET Multiple Web.config Management Utility(lakario.blogspot.com)

submitted by LakarioLakario(115) 2 years, 6 months ago

Quickly and easily manage multiple Web.config files with this useful batch script which uses NAnt to automatically generate multiple config files from a template. Once the template file containing the complete Web.config contents and accompanying property files that describe each unique configuration are defined one can run the included batch script and all of the {somename}.property files will automatically be processed and converted into web.{somename}.config files. Guaranteed to greatly reduce the hassle of managing multiple Web.config files for each unique deployment environment. read more...

add a comment |category: |Views: 116

tags: another

ASP.NET MVC 2 – Buddy Classes for your models(blog.pagedesigners.co.nz)

submitted by LakarioLakario(115) 2 years, 9 months ago

Example of implementing buddy classes using the System.ComponentModel.DataAnnotations MetaDataType attribute. Newly supported in ASP.NET MVC 2 CTP 1, buddy classes allow you to decorate references to your generated entity model classes with validation attributes thus preserving the generated model. read more...

add a comment |category: |Views: 106

tags: another

.NET Reflection - Generic Method Type Inference of a Boxed Parameter(lakario.blogspot.com)

submitted by LakarioLakario(115) 2 years, 9 months ago

A look into calling a generic method with a boxed parameter and returning a strongly typed, unboxed instance of that method using System.Reflection. read more...

add a comment |category: |Views: 31

tags: another

Check for Content in Control(lakario.blogspot.com)

submitted by LakarioLakario(115) 2 years, 9 months ago

A simple way to check whether or not a Server Control has any rendered content. Call it in the Master Page on a ContentPlaceHolder to test if it is empty. Accurately handles control containers (such as Panel) and nested controls (Label in a Panel). read more...

add a comment |category: |Views: 2

tags: another

ASP.NET Validation - Client-Side IsControlValid() Function(lakario.blogspot.com)

submitted by LakarioLakario(115) 2 years, 10 months ago

A simple JavaScript method to determine if a given control is valid based on the status of all of its ASP.NET validation controls. The method allows developers to test the validity of a given control on the page without validating the entire page or validation group and then react to that information without automatically displaying the validation errors to the client. read more...

add a comment |category: |Views: 12

tags: another

Visual Studio 2008 var Keyword Bug - Microsoft Follow-up(lakario.blogspot.com)

submitted by LakarioLakario(115) 2 years, 10 months ago

Received a follow-up from Microsoft regarding <a href="http://lakario.blogspot.com/2009/07/visual-studio-2008-var-keyword-bug.html">Visual Studio var Keyword Bug</a>. Here's what Microsoft support had to say about the issue. read more...

add a comment |category: |Views: 21

tags: another

Visual Studio 2008 var Keyword Bug(lakario.blogspot.com)

submitted by LakarioLakario(115) 2 years, 10 months ago

Visual Studio has a feature which is causing it to provide syntax highlighting for non-compilable code. An investigation into run-time versus compile-time code in ASP.NET 2.0 web projects using C# 3.0 syntax. read more...

add a comment |category: |Views: 5

tags: another