<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="MVC_Test1._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript">
$("#addPerson").click(function() {
var name = $("#name")[0].value;
if (name == "")
{
alert("You must provide a name");
return;
}
else
{
alert(name);
}
// var person = { Name: name };
// $.post("/Home/People", person, null, "json");
});
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<label>Name <input type="text" id="name" /></label><br />
<input type="button" id="addPerson" value="Add Person" />
<div>
</div>
</form>
</body>
</html>