How to set startup page for asp.net mvc aplication ?

Little ASP.NET MVC reminder :)

  • Project's Properties

  • Web tab

  • Select the Specific Page

continue >>

NuPack

NuPack is a free, open source developer focused package management system for the .NET platform intent on simplifying the process of incorporating third party libraries into a .NET application during development.

Other Detail

continue >>

Asp.Net MVC -3

continue >>

asp.net MVC - 2 first ajax request

Page Code 

$("#btnSend").click(function () {
                $.ajax({
                    type: "POST",
                    url: "../yourcontroller/youraction",
                    data: "name=bill&surname=gates",
                    dataType: "json",
                    success: function (result) {
                     // result is json
                    }
               });// ajax end

Controller Code

public ActionResult addNameSurname(string name,string surname)
{ /* your insert */
  return Json(false);
}

continue >>

Microsoft ASP.NET MVC for Web Form Programmers

If you first look ASP.NET MVC see this video  and you PHP developer see this quik and easy MVC i'm sure , gonna love


http://www.msteched.com/2010/NorthAmerica/WEB206

continue >>
Page 1 of 2   1 2