diff --git "a/49\350\223\235\346\226\207\351\276\231/.keep" "b/49\350\223\235\346\226\207\351\276\231/.keep"
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/49\350\223\235\346\226\207\351\276\231/\347\254\254\344\270\211\347\253\240\347\234\201\345\270\202\345\216\2771.md" "b/49\350\223\235\346\226\207\351\276\231/\347\254\254\344\270\211\347\253\240\347\234\201\345\270\202\345\216\2771.md"
new file mode 100644
index 0000000000000000000000000000000000000000..afdf241a837579df42783b41d20d87d628a0dd1b
--- /dev/null
+++ "b/49\350\223\235\346\226\207\351\276\231/\347\254\254\344\270\211\347\253\240\347\234\201\345\270\202\345\216\2771.md"
@@ -0,0 +1,72 @@
+```asp
+using System.Web.UI.WebControls;
+
+namespace Demo1
+{
+ public partial class Province : System.Web.UI.Page
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!IsPostBack) {
+ //SelectCommand:设置数据源的select命令
+ SqlDataSource1.SelectCommand = "select id,cityName from city where type=1";
+```
+
+
+
+```asp
+ //初始化城市信息,父级id为2(北京市下的城市信息)
+ SqlDataSource2.SelectCommand = "select * from city where type=2 and pid=" + 2;
+
+ //初始化区县信息
+ SqlDataSource3.SelectCommand = "select * from city where type=3 and pid=(select top 1 id from city where pid=2)" ;
+ }
+ }
+
+ ///