日期:2014-05-16 浏览次数:20900 次
<script type="text/javascript">
var grid = null;
$(function () {
grid = $("#maingrid4").ligerGrid({
columns: [
{ display: '主键', name: 'CustomerID', align: 'left', width: 120 },
{ display: '公司名', name: 'CompanyName', minWidth: 60 },
{ display: '联系名', name: 'ContactName', width: 50, align: 'left' },
{ display: '联系名', name: 'ContactName', minWidth: 140 },
{ display: '城市', name: 'City' }
],
pageSize: 30,
url: "AjaxServer.aspx",
width: '100%',
height: '80%'
});
$("#pageloading").hide();
});
</script>
// string str= File.ReadAllText(@"D:\MyCode\LigerUI\WebApplication1\WebApplication1\CustomersData.js");
//System.Web.HttpContext context = System.Web.HttpContext.Current;
//context.Response.ContentType = "text/plain";
//context.Response.Write(str);
string str = @"{""Rows"":[{""CustomerID"":""ALFKI""}],""Total"":""1""}";
// var javascript =JavaScriptConvert.DeserializeObject(str);
Response.Write(str);
Response.Flush();
&nb