zowens

Stories kicked 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

3 Gems in Mono for .NET Programmers – The hidden potential of Mono(amazedsaint.blogspot.com)

submitted by amazedsaintamazedsaint(835) 1 year, 7 months ago

Exploring some interesting aspects of Mono.CSharp, Mono.Cecil And Mono.TextTemplating read more...

add a comment |category: |Views: 264

tags: another

Create a Build File for a Visual Studio Solution - MsBuild Series(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

A build file automates the process of building, testing, analyzing, packaging, & deploying your project. Build files can be used to give you a single click solution to perform mundane tasks in a consistent way. read more...

add a comment |category: |Views: 278

tags: another

DataTable To JSON Array(aspdotnetmatters.blogspot.com)

submitted by ashishsarda99ashishsarda99(220) 1 year, 7 months ago

simple ready to use code, to convert any data table directly in JSON array. We can directly implement JSON array for many purposes in JavaScript. Simple and powerful code. read more...

add a comment |category: |Views: 74

tags: another

8 Best open source alternative to NHibernate. (www.findbestopensource.com)

submitted by solidstonesolidstone(500) 1 year, 7 months ago

NHibernate is one of the best ORM library in .NET to build data access code faster. We identified best open source alternative to NHibernate. According to the requirement pick any library and build the data access layer in .NET. read more...

1 comment |category: |Views: 760

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: 36

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: 294

tags: another

C# HttpRuntime - Simple Cache(www.dotnetguy.co.uk)

submitted by daniewat82daniewat82(114) 2 years, 1 month ago

I have been working recently on an application that needs very simple caching. I found this code sometime ago (but can’t for the life of me remember where! I think it may have been on StackOverflow). It is a simple cache that uses the HttpRuntime which enables it to be used on the web and also the desktop. This code has saved my bacon on more than one occasion so I thought I would share it. read more...

add a comment |category: |Views: 26

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

Pick your Windows Azure Operating System version!(blogs.msdn.com)

submitted by wzackwzack(1968) 2 years, 4 months ago

The Windows Azure Platform is currently based on a modified version of Windows Server 2008 R2. The Windows Azure philosophy is for Microsoft to take care of all the infrastructure requirements and let you focus on solving your business problem. One requirement that has had customers curious is how we will handle the issue of operating system versioning, in other words, do they automatically have to have their application run under a recently upgraded or patched version of the OS without their approval? Now we have an answer. With the addition of a new Service Configuration file parameter osVersion, you can now specify the version of the OS that you want your application to run under. read more...

add a comment |category: |Views: 9

tags: another

Welcome to the new DotNetKicks(blog.dotnetkicks.com)

submitted by javeryjavery(5523) 2 years, 4 months ago

Welcome to the new DotNetKicks - Lots of improvements and even more on the way! read more...

6 comments |category: |Views: 436

tags: another

ASP.NET MVC Tip #4: Client-side form validation made easy - Part 2 (devermind.com)

submitted by pluggypluggy(284) 2 years, 4 months ago

Client-side form validation has become a de-facto standard for modern web applications. However, some validation rules which cannot be checked completely on the client side, for example because the validation depends on information stored in the server database. This article describes how to implement this so that you don't have to write any custom javascript for new validation rules. This even includes remote validation rules and these validation rules that depend on multiple form fields. read more...

2 comments |category: |Views: 27

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