功能描述:一级菜单省份联动显示省份下的城市直接上代码public class City { public string Num { get; set; } public string Name { get; set; } } public class P...
"北京","天津","上海","重庆","江苏","浙江","安徽","江西","福建","湖北","湖南","四川","贵州","云南","广东","海南","甘肃","青海","内蒙古","新疆"
分类:
其他好文 时间:
2014-07-10 00:15:30
阅读次数:
343
题目熟能生巧。。。常做这类题,就不会忘记他的思路了。。。//可以反过来用并查集,还是逐个加边,但是反过来输出。。。我是白痴。。。。、又没想到//G++能过,C++却wa,这个也好奇怪呀。。。#include#includeint fx,fy,r,bin[10010];int x[100010],y[...
分类:
其他好文 时间:
2014-07-03 11:12:52
阅读次数:
182
题意:给你n个点m条边,问删除前i条边后有多少个连通分块。
思路:从后往前操作,从后往前添加i条边等于添加完m条边后删掉前m-i条边,可知刚开始没有边,所以sum[m]=n;
#include
#include
#include
#include
#include
#include
#define M 100010
#define LL...
分类:
其他好文 时间:
2014-06-30 20:26:50
阅读次数:
198
Problem J: TravelingTime Limit:1 SecMemory Limit:32 MBDescriptionSH likes traveling around the world. When he arrives at a city, he will ask the staff...
分类:
其他好文 时间:
2014-06-30 15:23:09
阅读次数:
145
原文:两表(多表)关联update的写法 .关于两表关联的update,可以把SQL写成了在SQL Server下面的特有形式,但是这种语法在Oracle下面是行不通的 update customers a set city_name=(select b.city_name from tmp_cus...
分类:
其他好文 时间:
2014-06-27 22:57:44
阅读次数:
250
province_city_area.jsp 1 2 3 4 5 6 7 8 14 15 18 19 22 61 62 ProvineCityAreaJsonServlet.java 1...
分类:
Web程序 时间:
2014-06-27 11:33:06
阅读次数:
259
private String mResult = null;
private String mProvinceName; //省份
private String mChCityName; //城市
private int GET_CITY_SUCCESS = 1;
private int GET_CITY_FAILURE = 2;
//...
分类:
其他好文 时间:
2014-06-26 13:38:07
阅读次数:
267
1、首先,打开VS创建两个List Definition,分别是Address和City,如下图:
2、City列表里修改Title为City Name,其实内部名称还是Title,注意一下:
3、给City的列表实例,添加几个值,用来测试使用,如下:
4、在Address列表里添加几个字段,分别是CityName(LookUp类型)和HomeAddress(Sing...
分类:
其他好文 时间:
2014-06-26 06:43:11
阅读次数:
306