如何使用 jQuery ajax 技术将字符串数组从 ASP.NET(C#) 发送到 javascript?
我知道如何为普通字符串执行此操作,但我需要使用字符串数组来实现它。
我可以将“ Response.Write
”与数组一起使用吗?如果是,那么我如何从客户端读取它?我怎样才能从那里读取数组?
这是来自服务器端:
protected void Page_Load(object sender, EventArgs e)
{
string[] arr1 = new string[] { "one", "two", "three" };
Response.Write(arr1);
Response.End();
}
这是来自客户端:
$(document).ready(function(){
$(':button').click(function(){
var text_result = "ok"
$.post('default.aspx', { text_res: text_result} , function(data){
alert("The result is: "+data);
}).error(function(){
alert("Error is occured");
});
});
});
这不起作用(对于数组),但它适用于正常数据非常感谢