Gil Fink on .Net

Fink about IT

News

Microsoft MVP

MCPD Enterprise Applications Developer

Gil Fink

My Linkedin profile

Locations of visitors to this page

Creative Commons License

Blog Roll

Hebrew MSDN Articles

Index Pages

My OSS Projects

Browse by Tags

All Tags » MVC Framework (RSS)
How To Use Unity Container In ASP.NET MVC Framework
How To Use Unity Container In ASP.NET MVC Framework In the past I wrote the post How To Use Unity Container In ASP.NET . In this post I’m going to explain how we can  use Unity IoC container in ASP.NET MVC Framework . Building The Container As in the previous post the first thing to do is to build the container itself. I’ll use the same method I used in the previous post   in order to persist the Unity container ’s state during the application execution. The right place to put the Unity...
Deciding When to Use ASP.NET MVC Framework
Deciding When to Use ASP.NET MVC Framework The post aim is to  help you decide when it’s appropriate to use ASP.NET MVC Framework and when it is appropriate to use ASP.NET Web Forms . Web Forms Web Application Advantages The old ASP.NET Web Forms framework is a mature framework that is being used in a lot of applications and web sites. The advantages of Web Forms are: State Management – in Web Forms state management is more easier. The use of ViewState or server based forms simplify the state...
Extending ASP.NET MVC HtmlHelper Class
Extending ASP.NET MVC HtmlHelper Class In the post I’ll show an example of how to extend the ASP.NET MVC HtmlHelper class that you can use within your MVC views. In the example I’ll provide a simple solution for building an Html table. The HtmlHelper class The HtmlHelper class is a class that can be used within ASP.NET MVC framework in order to help us render Html fragments of views. The class is provided with a lot of methods that can help you render Html types (textboxes, checkboxes etc) or Html...