04 2018 档案
摘要:服务器状态码及其含义: 200:服务器响应正常。 304:该资源在上次请求之后没有任何修改(这通常用于浏览器的缓存机制,使用GET请求时尤其需要注意)。 400:无法找到请求的资源。 401:访问资源的权限不够。 403:没有权限访问资源。 404:需要访问的资源不存在。 405:需要访问的资源被禁
阅读全文
摘要:数组的增删 数组的尾部插入一个元素 var nums = [0,1,2,3,4]; nums.push(5,6,6); //[0,1,2,3,4,5,6,6] 删除数组尾部的元素 var nums = [0,1,2,3,4,5]; nums.pop() // [0, 1, 2, 3, 4] 数组的头
阅读全文
摘要:public string DataTableToJson() { string dataJson = ""; string temp = ""; string tempChildren = ""; int id = 0; int idChildren = 0; DataTable dt = GJPDbHelper.DAL.ExecuteDataSet("s...
阅读全文
摘要:<asp:Button runat="server" ID="btn_read_03" Text="读取xls(03)到GridView" OnClick="btn_read_03_click" /> <asp:Button runat="server" ID="btn_read_07" Text=
阅读全文
摘要:只能是 id 与 text的固定组合 是数据来源 $(function () { $('#').combotree({ valueField: "id", //Value字段 textField: "text", //Text字段 multiple: true, data...
阅读全文