03 2019 档案
摘要:使用dt.Rows[0]["name", DataRowVersion.Original]可以获取
阅读全文
摘要:使用Delete()之后行消失了 先在for循环外加上dt.AcceptChanges(); 删除时在dt.AcceptChanges();
阅读全文
摘要:先加一个扩展函数: Array.prototype.contains = function (obj) { var index = this.length; while (index--) { if (this[index] obj) { return true; } } return false;
阅读全文
摘要:在websrvice发布文件的webconfig中加入 <httpRuntime maxRequestLength="102400" /> <webServices> <protocols> <add name="HttpPost" /> <add name="HttpGet" /> </proto
阅读全文
摘要:WebService中发布之后出现这个错误, 解决方法: web.config文件中的 <system.web> 节点下加入:<webServices> <protocols> <add name= "HttpPost"/> <add name= "HttpGet"/> </protocols></
阅读全文