using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace AJAX
{
public partial class AJAX_PostProcess : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
String strName = Request["name"];
String strAge = Request["age"];
String strMajor = Request["major"];
Response.Write("The name that was received by the server is " + strName + " and the age was " +
strAge + "
with a major in " + strMajor);
}
}
}