資源簡介
datagrid實(shí)例,詳細(xì)內(nèi)容是實(shí)踐了如何使用datagrid實(shí)現(xiàn)一個(gè)Web頁面可以和后臺(tái)互動(dòng)的表格

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Web;
using?System.Data;
namespace?GridDemos
{
????///?
????///?grid?的摘要說明
????///?
????public?class?grid?:?IHttpHandler
????{
????????public?void?ProcessRequest(HttpContext?context)
????????{
????????????context.Response.ContentType?=?“text/plain“;
????????????DataTable?dt?=?SqlHelper.GetTable(“select?*?from?stu“);
????????????string?str?=??string.Empty;
????????????str?=?JSonhelper.CreateJsonParameters(dt?true?dt.Rows.Count);
????????????context.Response.Write(str);
????????}
????????public?bool?IsReusable
????????{
????????????get
????????????{
????????????????return?false;
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????4194304??2014-05-04?13:49??DB_51aspx\stu.mdf
?????文件????4194304??2014-05-04?13:49??DB_51aspx\stu_log.ldf
?????文件????????387??2014-04-25?14:49??easyui\css\demo.css
?????文件????????271??2014-04-25?14:49??easyui\css\dlg.css
?????文件????????838??2014-04-25?14:49??easyui\css\themes\default\accordion.css
?????文件???????3647??2014-04-25?14:49??easyui\css\themes\default\calendar.css
?????文件???????1017??2014-04-25?14:49??easyui\css\themes\default\combo.css
?????文件????????323??2014-04-25?14:49??easyui\css\themes\default\combobox.css
?????文件???????5017??2014-04-25?14:49??easyui\css\themes\default\datagrid.css
?????文件????????619??2014-04-25?14:49??easyui\css\themes\default\datebox.css
?????文件????????487??2014-04-25?14:49??easyui\css\themes\default\dialog.css
?????文件??????46031??2014-04-25?14:49??easyui\css\themes\default\easyui.css
?????文件????????184??2014-04-25?14:49??easyui\css\themes\default\images\accordion_arrows.png
?????文件?????????43??2014-04-25?14:49??easyui\css\themes\default\images\blank.gif
?????文件????????173??2014-04-25?14:49??easyui\css\themes\default\images\calendar_arrows.png
?????文件????????117??2014-04-25?14:49??easyui\css\themes\default\images\combo_arrow.png
?????文件????????220??2014-04-25?14:49??easyui\css\themes\default\images\datagrid_icons.png
?????文件????????626??2014-04-25?14:49??easyui\css\themes\default\images\datebox_arrow.png
?????文件????????319??2014-04-25?14:49??easyui\css\themes\default\images\layout_arrows.png
?????文件???????1274??2014-04-25?14:49??easyui\css\themes\default\images\li
?????文件???????1737??2014-04-25?14:49??easyui\css\themes\default\images\loading.gif
?????文件????????160??2014-04-25?14:49??easyui\css\themes\default\images\menu_arrows.png
?????文件???????6116??2014-04-25?14:49??easyui\css\themes\default\images\messager_icons.png
?????文件????????628??2014-04-25?14:49??easyui\css\themes\default\images\pagination_icons.png
?????文件????????852??2014-04-25?14:49??easyui\css\themes\default\images\panel_tools.png
?????文件????????813??2014-04-25?14:49??easyui\css\themes\default\images\searchbox_button.png
?????文件????????863??2014-04-25?14:49??easyui\css\themes\default\images\slider_handle.png
?????文件????????115??2014-04-25?14:49??easyui\css\themes\default\images\spinner_arrows.png
?????文件????????150??2014-04-25?14:49??easyui\css\themes\default\images\tabs_icons.png
?????文件??????35328??2014-04-25?14:49??easyui\css\themes\default\images\Thumbs.db
............此處省略134個(gè)文件信息
評論
共有 條評論