zowens

Stories submitted by zowens

ASP.NET MVC JavaScript Routing(weblogs.asp.net)

submitted by zowenszowens(988) 1 year, 5 months ago

I introduce a small utility that will allow generation of routes and controller actions into JavaScript to allow URL generation on the client side using ASP.NET MVC routing. read more...

1 comment |category: |Views: 352

tags: another

Mulit-tenant ASP.NET MVC – Controllers(weblogs.asp.net)

submitted by zowenszowens(988) 1 year, 11 months ago

The time has come to talk about controllers in a multi-tenant ASP.NET MVC architecture. This is actually the most critical design decision you will make when dealing with multi-tenancy with MVC. In my design, I took into account the design goals I mentioned in the introduction about inversion of control and what a tenant is to my design. read more...

add a comment |category: |Views: 37

tags: another

Multi-tenant ASP.NET – Foundation(weblogs.asp.net)

submitted by zowenszowens(988) 1 year, 11 months ago

In my last post, I talked about some of the goals of multi-tenancy in general and some hints about my implementation. Now it is time to put a little meat on the bones. I’m ready to share my ideas about how to implement a multi-tenant system on ASP.NET MVC and IIS7. read more...

add a comment |category: |Views: 76

tags: another

Multi-tenant ASP.NET MVC – Introduction(weblogs.asp.net)

submitted by zowenszowens(988) 2 years ago

In this first post, I discuss what multi-tenancy means and how my implementation will be structured for use in ASP.NET MVC. Multi-tenancy is a technique used by many developers to increase IIS efficiency and reuse code. This is an introduction into some of the core elements of multi-tenancy and how to use multi-tenancy in ASP.NET MVC. read more...

add a comment |category: |Views: 295

tags: another

A new way to filter a list by URL - StringToIQueryable(weblogs.asp.net)

submitted by zowenszowens(988) 2 years, 4 months ago

Ever see a URL with a bunch of query string variables that is used to filter a list result? There is a new way to write and parse a query parameter using a parser monad and a few standard combinators that can be used to filter an IQueryable based on a pre-defined syntax. Have a look at the code that will make your querying easier with MVC. read more...

add a comment |category: |Views: 11

tags: another

ClubStarterKit is reborn (with release)(weblogs.asp.net)

submitted by zowenszowens(988) 2 years, 5 months ago

ClubStarterKit has been totally rewritten with ASP.NET MVC, C#, .NET 4.0, and NHiberante. Check out the preview version (link in blog post). read more...

add a comment |category: |Views: 18

tags: another

Fluent NHibernate with System.ComponentModel.DataAnnotations (weblogs.asp.net)

submitted by zowenszowens(988) 2 years, 7 months ago

Want to map your domain with DataAnnotations validation? Using Fluent NHibernate? Then take a look at how to create a simple convention! read more...

add a comment |category: |Views: 155

tags: another

Maybe Monad… My C# version(weblogs.asp.net)

submitted by zowenszowens(988) 2 years, 8 months ago

Functional programming paradigms are increasingly important to all .NET developers. Monads are key concepts in functional languages. The maybe monad seen in some languages can be ported to C#. In this post, I detail the elements key to the maybe monad and the implementation decisions made when creating such a container. read more...

add a comment |category: |Views: 42

tags: another

ASP.NET MVC - Remove Whitespace(weblogs.asp.net)

submitted by zowenszowens(988) 3 years, 8 months ago

Have you tried removing the whitespace form your ASP.NET MVC View Pages... not exactly how it used to be. Check out my solution to this problem. read more...

add a comment |category: |Views: 301

tags: another

ASP.NET MVC CSS Sprite(weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 1 month ago

I build on my last technique of generating CSS Sprites and make a unique solution for the MVC framework using a custom ActionResult. read more...

add a comment |category: |Views: 145

tags: another

CSS Sprites generated for ASP.NET(weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 2 months ago

CSS Sprites are a technique of adding images into one image file and then rendering them for use on your site. This will save your website's users HTTP Requests needed to load up your pages. read more...

add a comment |category: |Views: 32

tags: another

Minify your CSS through Regex(weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 3 months ago

Decreace the size of your CSS stylesheet through a few simple and easy Regex replacements. read more...

1 comment |category: |Views: 150

tags: another

Poll: JavaScript library for an eCommerce site?(weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 3 months ago

Poll: Which JS library is optimal for a full-featured eCommerce site? read more...

add a comment |category: |Views: 2

tags: another

TIP OF THE DAY : Override the tag in a webcontrol(weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 4 months ago

TIP - Override the default TagKey property of the WebControl class to your desired value (from the default SPAN rendered tag). read more...

add a comment |category: |Views: 0

tags: another

SubSonic Providers architecture(weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 5 months ago

In this blog post, I detail the SubSonic ASP.NET Providers (Membership and Roles) that I released in the form of a beta two months ago. read more...

add a comment |category: |Views: 27

tags: another

Determine if a user enables JavaScript (weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 6 months ago

Make your own JavaScript and need to see if a user has JavaScript enabled? Here's a solution. read more...

add a comment |category: |Views: 4

tags: another