摘要: 首先是生成xml文件,生成xml文件前去网上DOWNload一个最新中国省市行政数据库public void createxml(string filename) { XmlTextWriter mywrite = new XmlTextWriter(filename, Encoding.UTF8); try { mywrite.Formatting = Formatting.Indented; ... 阅读全文
posted @ 2009-01-07 17:01 火精灵 阅读(804) 评论(0) 推荐(0) 编辑
摘要: RequiredFieldValidator验证控件失效时给该控件ValidationGroup赋值即 asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="productname" ErrorMessage="*必填" Va... 阅读全文
posted @ 2009-01-07 10:57 火精灵 阅读(900) 评论(0) 推荐(0) 编辑
摘要: aspx文件 ... 阅读全文
posted @ 2009-01-07 10:54 火精灵 阅读(492) 评论(0) 推荐(0) 编辑
摘要: public bool wbrowserinfo(int browsehid, string browsetitle, string browsepageurl, string browsetime, int userid) { sql = "select * from house_browselslist where userid=" + userid +... 阅读全文
posted @ 2009-01-07 10:50 火精灵 阅读(345) 评论(0) 推荐(0) 编辑
摘要: /// /// 分页 /// /// 一页显示多少条记录 /// 当前页 /// 表名 /// 条件 /// 排序字段 /// 排序方式 /// public DataTable zdypadding(int pagesize, i... 阅读全文
posted @ 2009-01-07 10:49 火精灵 阅读(134) 评论(0) 推荐(0) 编辑
摘要: public DataTable getzdydtsellout(int userid) { DataTable table = new DataTable(); DataTable zdydt = null; table = gongyongdt(); DataRow NewRow; ... 阅读全文
posted @ 2009-01-07 10:46 火精灵 阅读(362) 评论(0) 推荐(0) 编辑
摘要: /// /// 返还分好页的数据源 /// /// 条件 /// 表名 /// 主键 /// 排序字段 /// 当前页 /// 数据源 /// 页码 /// 排序方式 /// public DataTa... 阅读全文
posted @ 2009-01-07 10:45 火精灵 阅读(145) 评论(0) 推荐(0) 编辑
摘要: public string getnumber(string mathnum) { Hashtable ht = new Hashtable(); ht.Add("0", "零"); ht.Add("1", "一"); ht.Add("2", "二"); ht.A... 阅读全文
posted @ 2009-01-07 10:44 火精灵 阅读(392) 评论(0) 推荐(0) 编辑
摘要: public string SqlFilter2(string InText) { string word = "and|exec|insert|select|delete|update|chr|mid|master|or|truncate|char|declare|join|script|SCRIPT|"; returnstr =... 阅读全文
posted @ 2009-01-07 10:43 火精灵 阅读(139) 评论(0) 推荐(0) 编辑
摘要: gridview,datagrid(绑定事件:RowDataBound) /****/ if (e.Row.RowType == DataControlRowType.DataRow) { } /****/ datalist,repeater if(e.item.itemtype==listitemtype.item||e.item.i... 阅读全文
posted @ 2009-01-07 09:24 火精灵 阅读(477) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Collections.Generic; using System.Text; using System.Web.Script.Serialization;namespace json{ /**//// <summary> /// JSONHelper 的摘要说明 /// </s... 阅读全文
posted @ 2009-01-07 08:56 火精灵 阅读(3627) 评论(6) 推荐(1) 编辑