Posts Tagged: ASP.Net MVC

How to Populate data in Entity Framework code first on database creation

Posted by & filed under .Net, ASP.Net MVC, Entity Framework.

Yesterday I got chance to work on an ASP.Net MVC application, in which I was planned to use Entity Framework Code First as Model. But I found one issue with that approach, few of the tables, like Roles, Users etc, which may need to pre-populate data, instead of creating in runtime. After a few search [...]

ASP.NET MVC 4 Beta released

Posted by & filed under .Net, .Net 4.0, ASP.Net MVC.

A few days ago Microsoft released the ASP.NET MVC 4 Beta. This is a significant release that brings with it a bunch of great new features and capabilities. The ASP.NET MVC 4 Beta release works with VS 2010 and .NET 4.0, and is side-by-side compatible with prior releases of ASP.NET MVC (meaning you can safely [...]

ASP.NET MVC 3 RTM Released

Posted by & filed under .Net, .Net 4.0, ASP.Net MVC.

The ASP.NET team has released RTM version of ASP.NET MVC 3. You can download the ASP.NET MVC 3 RTM from here. Microsoft has released the following products along with ASP.NET MVC 3. You can find the source code of ASP.NET MVC 3 can download from here NuGet IIS Express 7.5 SQL Server Compact Edition 4 [...]

Creating Captcha HTML Helper

Posted by & filed under .Net, .Net 3.0 / 3.5, ASP.Net, ASP.Net MVC, Javascript.

After working with ASP.Net MVC, and my previous posts, in this Post I am trying to implement a Captcha HTML Helper, an HTML Helper is just a method that returns a string. Creating Custom HTML Helpers. It is an extension method, to the existing HTML Helper class. Here is code.(For more details about the Captcha [...]