Including POST, GET, AJAX
Foreground call
jQuery.post("NewDoAjax.aspx", { max: ' N ! ', name: 'wsenmin' }, function(data) { alert(data) });
jQuery. get("NewDoAjax.aspx", { max: ' B !', name: 'wsenmin' }, function(data) { alert(data) });
var superMan = "max=I am jq &name= it is ajax ";
jQuery.ajax({
type: "POST",
url: "NewDoAjax.aspx",
data: superMan,
success: function(msg) {alert (msg);}
});
C# code: (Save the following code as NewDoAjax.aspx file)
<%@ Page Language="C#" ValidateRequest="false" EnableSessionState="True"%> ;
<%@ Import NameSpace="System.Data.SqlClient" %>
<%@ Import NameSpace="System.Data" %>
<%@ Import Namespace=" System.Configuration"%>
<%@ Import Namespace="System.Web.Security"%>
<%@ Import Namespace="System.Drawing"%>
< script type="text/C#" runat="server">
protected void Page_LoadComplete(object sender, EventArgs e)
{
Response.ClearContent();
Response.Clear();
string yy = null;
int count = Request.Form.Count;
int count2 = Request.QueryString.Count;
foreach (var cv in Request.Form)
{
yy = cv ":" Request.Form[cv.ToString()].ToString() " Haha, so simple || ";
}
foreach (var cv in Request.QueryString)
{
yy = cv ":" Request.QueryString[cv.ToString()].ToString() " So simple || ";
}
Response.Write(yy.Substring(0,yy. Length-4));
Response.End();
}