Category Archives: ASP.Net MVC

Introduction to Code First development with Entity Framework

The Database First approach is interesting when the database already exists. You use Visual Studio and the Entity Framework Designer to generate the C# and VB.NET classes which reflect the existing database model. You may then change relations using the … Continue reading

Posted in .Net, .Net 4.0, ASP.Net, ASP.Net MVC, SQL Server, WPF | Tagged , , , , , , | 4 Comments

ASP.NET MVC 3 RTM Released

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 … Continue reading

Posted in .Net, .Net 4.0, ASP.Net MVC | Tagged , , | Leave a comment

How to use Stored Procedures in Entity Framework

In the current project we are using Entity Framework for database operations. Entity Framework comes with Visual Studio SP1, which helps you to map tables / views / procedures as entities in C# / VB Code. You can find more … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net MVC, SQL Server, Windows Forms | Tagged , , , , | 3 Comments

Creating Captcha HTML Helper

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 … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, ASP.Net MVC, Javascript | Tagged , , , , , , , | 3 Comments