tkmagesh

Stories kicked by tkmagesh

What's new in Razor v2?(vibrantcode.com)

submitted by dpetersondpeterson(4397) 1 month, 16 days ago

Check out some of the new features and changes in the upcoming Razor view engine v2.0. Don't forget the source code is also now available on Codeplex! read more...

1 comment |category: |Views: 621

tags: another

Lucene.net - Ultra-fast search for MVC or Webforms(www.codeproject.com)

submitted by dpetersondpeterson(4397) 3 months, 25 days ago

Mikhail T. has put together an article showing how you can integrate the Java-based Apache Lucene project with your .Net based MVC or WebForms sites, giving you ultra-fast and slick search capabilities. read more...

add a comment |category: |Views: 432

tags: another

liteGrid is jQuery grid for Asp.Net Mvc(code.google.com)

submitted by pwhe23pwhe23(972) 5 months, 12 days ago

liteGrid is a lightweight, event-driven jQuery Grid/Table plug-in. Its loosely-coupled, extensible design makes it very easy to customize without requiring you to make cumbersome changes to complex code. The core of liteGrid provides very little functionality. It's power comes in the form of pluggable modules... read more...

add a comment |category: |Views: 278

tags: another

I, Interface(garymcleanhall.wordpress.com)

submitted by gurhallgurhall(85) 6 months, 10 days ago

The wonderful things that decorating a trivial interface can produce. read more...

2 comments |category: |Views: 706

tags: another

ASP.NET Best practices(www.ganshani.com)

submitted by vijaystvijayst(1311) 6 months, 11 days ago

The post gives some of the best practices that can be used while programming an ASP.NET web application. read more...

5 comments |category: |Views: 681

tags: another

5 Ways That Postsharp Can SOLIDify Your Code: Caching(www.sharpcrafters.com)

submitted by mgrovesmgroves(260) 1 year, 3 months ago

Sometimes there's just no way to speed up an operation. Maybe it's dependent on a service that's on some external web server, or maybe it's a very processor intensive operation, or maybe it's fast by itself, but a bunch of concurrent requests would suck up all your resources. There are lots of reasons to use caching. PostSharp itself doesn't provide a caching framework for you (again, PostSharp isn't reinventing the wheel, it's just making it easier to use), but it does provide you with a way to (surprise) reduce boilerplate code, stop repeating yourself, and separate concerns into their own classes. read more...

1 comment |category: |Views: 335

tags: another

Online book fo getting started with F#(www.ctocorner.com)

submitted by tkmageshtkmagesh(10) 2 years, 2 months ago

A good online resource to get started with F# read more...

add a comment |category: |Views: 10

tags: another

Poll: IoC containers for .NET(www.sturmnet.org)

submitted by oliversolivers(95) 2 years, 2 months ago

Trying to find out which IoC containers people use on .NET, or even if they use any. Put your vote in and kick it! read more...

2 comments |category: |Views: 761

tags: another

Supporting multiple submit buttons on an ASP.NET MVC view(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 6 months ago

A while ago, I was asked for advice on how to support multiple submit buttons in an ASP.NET MVC application, preferably without using any JavaScript. The idea was that a form could contain more than one submit button issuing a form post to a different controller action. The above situation can be solved in many ways, one a bit cleaner than the other. For example, one could post the form back to one action method and determine which method should be called from that action method. Good solution, however: not standardized within a project and just not that maintainable… A better solution in this case was to create an ActionNameSelectorAttribute. read more...

add a comment |category: |Views: 836

tags: another