Little ASP.NET MVC reminder :)
-
Project's Properties
-
Web tab
-
Select the Specific Page
by Ilyax on 27. July 2011 in Development
Little ASP.NET MVC reminder :)
Project's Properties
Web tab
Select the Specific Page
by Ilyax on 12. October 2010 in Tools
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.
by Ilyax on 23. July 2010 in Development
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);
}
by Ilyax on 22. June 2010 in Actual
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
© Copyright 2007-2010 iLyax.