Latest MVC stories

Building MVC3 Web Application by using Visual Studio 2010(aspforum.wordpress.com)

submitted by aspforumaspforum(20) 11 months, 26 days ago

This article would be a beginner’s guide on how to build your first MVC3 Application using Razor View Engine. read more...

add a comment |category: |Views: 31

tags: another

Logging NHibernate’s SQL-queries to screen with ASP.NET MVC 3 and Glim(mikaelkoskinen.net)

submitted by MiksuMiksu(25) 1 year ago

Tutorial on how to show the SQL queries generated by NHibernate on screen, while using your ASP.NET MVC application normally. read more...

add a comment |category: |Views: 80

tags: another

ASP.NET MVC Compiled Views – Use Them(dotnetcurry.com)

submitted by SuprotimAgarwalSuprotimAgarwal(715) 1 year ago

The following article demonstrates how to use the compiled views feature in ASP.NET MVC. read more...

1 comment |category: |Views: 118

tags: another

MvcBuildViews is broken(blog.e4ums.co.uk)

submitted by carcercarcer(240) 1 year, 1 month ago

The MvcBuildViews open within *proj files is broken. It will try to compile views that are on the filesystem, even if they are excluded from the project read more...

add a comment |category: |Views: 10

tags: another

Upload Files In RAZOR With jQuery Uploadify Plugin(midnightprogrammer.net)

submitted by prashantmx4prashantmx4(815) 1 year, 2 months ago

Upload files with the help of an excellent jQuery plug-in in RAZOR. read more...

add a comment |category: |Views: 100

tags: another

Gal Segal's Blog | MVC Nested Layout(gal-segal.com)

submitted by cornetocorneto(135) 1 year, 2 months ago

MVC3 introduced Razor’s Layout as the new heir of the master page. It is a little different, has section rendering instead of content place holders, but it is pretty similar and intuitive to work with. read more...

add a comment |category: |Views: 23

tags: another

Output Caching Actions Gotcha in ASP.NET MVC 3(www.dotnetcurry.com)

submitted by johnastuntzjohnastuntz(191) 1 year, 2 months ago

The following article describes how to avoid the output caching problem in ASP.NET MVC 3. read more...

add a comment |category: |Views: 230

tags: another

JSON, ASP.NET MVC and JQuery - Working with Untyped JSON made easy(www.amazedsaint.com)

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

Working with Untyped Json at serverside for ASP.NET MVC read more...

add a comment |category: |Views: 29

tags: another

Global Exception Handling in MVC3(community.codesmithtools.com)

submitted by tduponttdupont(1259) 1 year, 3 months ago

In MVC3 a GlobalFilterCollection has been added to the Application_Start. This allows you to register filters that will be applied to all controller actions in a single location. Also, MVC3 web applications now add an instance of HandleErrorAttribute to these GlobalFilters by default. This means that errors in the MVC pipeline will now be automatically handled by these attributes and never fire the HttpApplication's OnError event... read more...

add a comment |category: |Views: 368

tags: another

Dean Hume - MVC 3 and Remote Validation(deanhume.com)

submitted by deanomachinodeanomachino(764) 1 year, 3 months ago

While I was browsing the Asp.net MVC 3 Home page and reading through the feature list, one of the things that caught my eye was the new Remote Validation support that has been added. Remote Validation is the ability to call a custom server-side validation method via the client-side. This is very handy if you want real time validation without posting your form to validate the fields and see the results. read more...

add a comment |category: |Views: 26

tags: another

Create a blog with JQuery Mobile and ASP.NET MVC 3 with C#(www.giantflyingsaucer.com)

submitted by bungleboozbunglebooz(1132) 1 year, 3 months ago

I wrote an article not to long ago that showed you how to build a Mobile Blog with PHP and the new JQuery Mobile framework (the Alpha 3 version). Today I’ve taken that article and converted the code to ASP.NET MVC 3 (C#). read more...

add a comment |category: |Views: 59

tags: another

Mocking the jQuery Ajax Call in ASP.NET MVC 3 Music Store(www.elijahmanor.com)

submitted by elijahmanorelijahmanor(1448) 1 year, 3 months ago

Sometimes the front-end and back-end of your web application progress at different speeds. In order for each layer to progress independently it is optimal if the front-end piece can mock the results of the back-end. read more...

add a comment |category: |Views: 29

tags: another

ASP.NET MVC Tip #48 – Disable Request Validation(stephenwalther.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 3 months ago

By default, the ASP.NET MVC framework prevents you from submitting form data that contains potentially malicious content. This feature is called request validation. This is a good feature. You don't want people sneaking scripts into your website that can steal passwords or other sensitive user information. Normally, you want to leave request validation enabled. Unlike a Web Forms application, you cannot disable request validation by using the <%@ Page ValidateRequest=”false” %> directive. You also cannot disable request validation in the web configuration (web.config) file. If you want to disable request validation then you must use the [ValidateInput] attribute. You apply the [ValidateInput] attribute to the controller action that accepts the form input. read more...

add a comment |category: |Views: 41

tags: another

Working with ASP.Net MVC 3 Razor View Engine and Syntax Highlighting(www.aspnethostingnews.com)

submitted by c_ronaldoc_ronaldo(19) 1 year, 3 months ago

A quick preview about ASP.Net MVC 3 Razor View Engine and Syntax Highlighting read more...

add a comment |category: |Views: 56

tags: another

How to switch javascript links between Debug and Release using Razor(softwaredevelopmentexperiences.blogspot.com)

submitted by dwcarterdwcarter(94) 1 year, 4 months ago

I use JQuery and numerous associated plugins in virtually every site I develop now days. Depending on what I am doing I want to be using a specific version of a file, for instance when debugging I often want to be using jquery.js so I can debug if required, while in the production version of the code I want to use the CDN to make use of caching on the browser. read more...

add a comment |category: |Views: 33

tags: another

ASP.NET MVC 3 RTM Released!(www.microsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 4 months ago

ASP.NET MVC 3 is a framework for developing highly testable and maintainable Web applications by leveraging the Model-View-Controller (MVC) pattern. The framework encourages developers to maintain a clear separation of concerns among the responsibilities of the application – the UI logic using the view, user-input handling using the controller, and the domain logic using the model. ASP.NET MVC applications are easily testable using techniques such as test-driven development (TDD). The installation package includes templates and tools for Visual Studio 2010 to increase productivity when writing ASP.NET MVC applications. For example, the Add View dialog box takes advantage of customizable code generation (T4) templates to generate a view based on a model object. The default project template allows the developer to automatically hook up a unit-test project that is associated with the ASP.NET MVC application. Because the ASP.NET MVC framework is built on ASP.NET 4, developers can take advantage of existing ASP.NET features like authentication and authorization, profile settings, localization, and so on. read more...

1 comment |category: |Views: 212

tags: another