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_GetProcess : System.Web.UI.Page

    {

        protected void Page_Load(object sender, EventArgs e)

        {

            String strName = Request.QueryString["name"];

            String strAge = Request.QueryString["age"];

            String strMajor = Request.QueryString["major"];

 

            Response.Write("The name that was received by the server is " + strName + " and the age was " +

                           strAge + " with a major in " + strMajor);

        }

    }

}