您好,登錄后才能下訂單哦!
aspx前臺頁面代碼如下:
<script language="javascript" type="text/javascript">
function TestAjax(){
$.ajax({
url: "/", //ajax請求的路徑 dataType: "json",
data: "id=150"+"&r=" + Math.random(), //請求的參數
type: "post",
success: function (data) {
alert(data.name); //彈出data對象的name屬性值
}
});
}
</script>
后臺。cs文件如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (Request.QueryString["id"] != null)
{
string id = Request.QueryString["id"].ToString();
Context.Response.ContentType = "text/plain";
//構建的json數據(只有一條數據可以直接用{},如果有多條數據需要用[],前臺用索引訪問) 例如jsonstr = "[{\"pricelist\":\"" + temm + "\",\"jianye\":\"" + jianye + "\",\"sigleprice\":\"" + oneytempprice + "\",\"jianyetotalprice\":\"" + jianyetotalprice + "\"}]";
string data = "{\"id\":\"" + id + "\",\"name\":\"測試內容 \",\"sigleprice\":\"120.0 \",\"jianyetotalprice\":\"123.2\"}";
Context.Response.Write(data);
Context.Response.End();
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。