亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 讀者檔案管理.designer.cs

?? 圖書管理系統源代碼,很圖書管理系統源代碼,很不錯,有參考作用不錯,有參考作用
?? CS
?? 第 1 頁 / 共 4 頁
字號:
            // button4
            // 
            this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.button4.Image = global::圖書館管理系統.Properties.Resources.尾記錄;
            this.button4.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.button4.Location = new System.Drawing.Point(162, 0);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(54, 47);
            this.button4.TabIndex = 2;
            this.button4.Text = "尾記錄";
            this.button4.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.button4.UseVisualStyleBackColor = true;
            this.button4.Click += new System.EventHandler(this.button4_Click);
            // 
            // button5
            // 
            this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.button5.Image = global::圖書館管理系統.Properties.Resources.新增;
            this.button5.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
            this.button5.Location = new System.Drawing.Point(216, -1);
            this.button5.Name = "button5";
            this.button5.Size = new System.Drawing.Size(62, 48);
            this.button5.TabIndex = 3;
            this.button5.Text = "新增記錄";
            this.button5.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
            this.button5.UseVisualStyleBackColor = true;
            this.button5.Click += new System.EventHandler(this.button5_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.button11);
            this.groupBox1.Controls.Add(this.textBox1);
            this.groupBox1.Controls.Add(this.comboBox1);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Location = new System.Drawing.Point(0, 50);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(694, 84);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            // 
            // button11
            // 
            this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.button11.Image = global::圖書館管理系統.Properties.Resources.搜索;
            this.button11.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button11.Location = new System.Drawing.Point(470, 22);
            this.button11.Name = "button11";
            this.button11.Size = new System.Drawing.Size(75, 45);
            this.button11.TabIndex = 4;
            this.button11.Text = "搜索";
            this.button11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.button11.UseVisualStyleBackColor = true;
            this.button11.Click += new System.EventHandler(this.button11_Click);
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(307, 41);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(100, 21);
            this.textBox1.TabIndex = 3;
            // 
            // comboBox1
            // 
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            "類型",
            "條形碼",
            "編號",
            "姓名",
            "性別",
            "是否掛失",
            "所有記錄"});
            this.comboBox1.Location = new System.Drawing.Point(95, 43);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(121, 20);
            this.comboBox1.TabIndex = 2;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(270, 25);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 12);
            this.label2.TabIndex = 1;
            this.label2.Text = "設置查詢值:";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(62, 26);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(89, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "選擇查詢字段:";
            // 
            // sqlConnection1
            // 
            this.sqlConnection1.ConnectionString = "Data Source=.;Initial Catalog=libbook;Integrated Security=True";
            this.sqlConnection1.FireInfoMessageEventOnUserErrors = false;
            // 
            // sqlSelectCommand1
            // 
            this.sqlSelectCommand1.CommandText = "SELECT 讀者信息.*\r\nFROM 讀者信息";
            this.sqlSelectCommand1.Connection = this.sqlConnection1;
            // 
            // sqlDataAdapter1
            // 
            this.sqlDataAdapter1.DeleteCommand = this.sqlDeleteCommand;
            this.sqlDataAdapter1.InsertCommand = this.sqlInsertCommand;
            this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
            this.sqlDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
            new System.Data.Common.DataTableMapping("Table", "讀者信息", new System.Data.Common.DataColumnMapping[] {
                        new System.Data.Common.DataColumnMapping("條形碼", "條形碼"),
                        new System.Data.Common.DataColumnMapping("編號", "編號"),
                        new System.Data.Common.DataColumnMapping("姓名", "姓名"),
                        new System.Data.Common.DataColumnMapping("性別", "性別"),
                        new System.Data.Common.DataColumnMapping("類型", "類型"),
                        new System.Data.Common.DataColumnMapping("出生日期", "出生日期"),
                        new System.Data.Common.DataColumnMapping("有效證件", "有效證件"),
                        new System.Data.Common.DataColumnMapping("證件號碼", "證件號碼"),
                        new System.Data.Common.DataColumnMapping("聯系方式", "聯系方式"),
                        new System.Data.Common.DataColumnMapping("登記日期", "登記日期"),
                        new System.Data.Common.DataColumnMapping("有限期至", "有限期至"),
                        new System.Data.Common.DataColumnMapping("操作員", "操作員"),
                        new System.Data.Common.DataColumnMapping("備注", "備注"),
                        new System.Data.Common.DataColumnMapping("圖書借閱次數", "圖書借閱次數"),
                        new System.Data.Common.DataColumnMapping("期刊借閱次數", "期刊借閱次數"),
                        new System.Data.Common.DataColumnMapping("是否掛失", "是否掛失")})});
            this.sqlDataAdapter1.UpdateCommand = this.sqlUpdateCommand;
            // 
            // sqlDeleteCommand
            // 
            this.sqlDeleteCommand.CommandText = resources.GetString("sqlDeleteCommand.CommandText");
            this.sqlDeleteCommand.Connection = this.sqlConnection1;
            this.sqlDeleteCommand.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
            new System.Data.SqlClient.SqlParameter("@IsNull_條形碼", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "條形碼", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_條形碼", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "條形碼", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@Original_編號", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "編號", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_姓名", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "姓名", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_姓名", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "姓名", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_性別", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "性別", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_性別", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "性別", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@Original_類型", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "類型", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_出生日期", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "出生日期", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_出生日期", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "出生日期", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_有效證件", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "有效證件", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_有效證件", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "有效證件", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_證件號碼", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "證件號碼", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_證件號碼", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "證件號碼", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_聯系方式", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "聯系方式", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_聯系方式", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "聯系方式", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_登記日期", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "登記日期", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_登記日期", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "登記日期", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_有限期至", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "有限期至", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_有限期至", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "有限期至", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_操作員", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "操作員", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_操作員", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "操作員", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_備注", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "備注", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_備注", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "備注", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_圖書借閱次數", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "圖書借閱次數", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_圖書借閱次數", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "圖書借閱次數", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_期刊借閱次數", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "期刊借閱次數", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_期刊借閱次數", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "期刊借閱次數", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_是否掛失", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "是否掛失", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_是否掛失", System.Data.SqlDbType.Bit, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "是否掛失", System.Data.DataRowVersion.Original, null)});
            // 
            // sqlInsertCommand
            // 
            this.sqlInsertCommand.CommandText = resources.GetString("sqlInsertCommand.CommandText");
            this.sqlInsertCommand.Connection = this.sqlConnection1;
            this.sqlInsertCommand.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
            new System.Data.SqlClient.SqlParameter("@條形碼", System.Data.SqlDbType.VarChar, 0, "條形碼"),
            new System.Data.SqlClient.SqlParameter("@編號", System.Data.SqlDbType.VarChar, 0, "編號"),
            new System.Data.SqlClient.SqlParameter("@姓名", System.Data.SqlDbType.VarChar, 0, "姓名"),
            new System.Data.SqlClient.SqlParameter("@性別", System.Data.SqlDbType.VarChar, 0, "性別"),
            new System.Data.SqlClient.SqlParameter("@類型", System.Data.SqlDbType.VarChar, 0, "類型"),
            new System.Data.SqlClient.SqlParameter("@出生日期", System.Data.SqlDbType.SmallDateTime, 0, "出生日期"),
            new System.Data.SqlClient.SqlParameter("@有效證件", System.Data.SqlDbType.VarChar, 0, "有效證件"),
            new System.Data.SqlClient.SqlParameter("@證件號碼", System.Data.SqlDbType.VarChar, 0, "證件號碼"),
            new System.Data.SqlClient.SqlParameter("@聯系方式", System.Data.SqlDbType.VarChar, 0, "聯系方式"),
            new System.Data.SqlClient.SqlParameter("@登記日期", System.Data.SqlDbType.SmallDateTime, 0, "登記日期"),
            new System.Data.SqlClient.SqlParameter("@有限期至", System.Data.SqlDbType.SmallDateTime, 0, "有限期至"),
            new System.Data.SqlClient.SqlParameter("@操作員", System.Data.SqlDbType.VarChar, 0, "操作員"),
            new System.Data.SqlClient.SqlParameter("@備注", System.Data.SqlDbType.VarChar, 0, "備注"),
            new System.Data.SqlClient.SqlParameter("@圖書借閱次數", System.Data.SqlDbType.Int, 0, "圖書借閱次數"),
            new System.Data.SqlClient.SqlParameter("@期刊借閱次數", System.Data.SqlDbType.Int, 0, "期刊借閱次數"),
            new System.Data.SqlClient.SqlParameter("@是否掛失", System.Data.SqlDbType.Bit, 0, "是否掛失")});
            // 
            // sqlUpdateCommand
            // 
            this.sqlUpdateCommand.CommandText = resources.GetString("sqlUpdateCommand.CommandText");
            this.sqlUpdateCommand.Connection = this.sqlConnection1;
            this.sqlUpdateCommand.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
            new System.Data.SqlClient.SqlParameter("@條形碼", System.Data.SqlDbType.VarChar, 0, "條形碼"),
            new System.Data.SqlClient.SqlParameter("@編號", System.Data.SqlDbType.VarChar, 0, "編號"),
            new System.Data.SqlClient.SqlParameter("@姓名", System.Data.SqlDbType.VarChar, 0, "姓名"),
            new System.Data.SqlClient.SqlParameter("@性別", System.Data.SqlDbType.VarChar, 0, "性別"),
            new System.Data.SqlClient.SqlParameter("@類型", System.Data.SqlDbType.VarChar, 0, "類型"),
            new System.Data.SqlClient.SqlParameter("@出生日期", System.Data.SqlDbType.SmallDateTime, 0, "出生日期"),
            new System.Data.SqlClient.SqlParameter("@有效證件", System.Data.SqlDbType.VarChar, 0, "有效證件"),
            new System.Data.SqlClient.SqlParameter("@證件號碼", System.Data.SqlDbType.VarChar, 0, "證件號碼"),
            new System.Data.SqlClient.SqlParameter("@聯系方式", System.Data.SqlDbType.VarChar, 0, "聯系方式"),
            new System.Data.SqlClient.SqlParameter("@登記日期", System.Data.SqlDbType.SmallDateTime, 0, "登記日期"),
            new System.Data.SqlClient.SqlParameter("@有限期至", System.Data.SqlDbType.SmallDateTime, 0, "有限期至"),
            new System.Data.SqlClient.SqlParameter("@操作員", System.Data.SqlDbType.VarChar, 0, "操作員"),
            new System.Data.SqlClient.SqlParameter("@備注", System.Data.SqlDbType.VarChar, 0, "備注"),
            new System.Data.SqlClient.SqlParameter("@圖書借閱次數", System.Data.SqlDbType.Int, 0, "圖書借閱次數"),
            new System.Data.SqlClient.SqlParameter("@期刊借閱次數", System.Data.SqlDbType.Int, 0, "期刊借閱次數"),
            new System.Data.SqlClient.SqlParameter("@是否掛失", System.Data.SqlDbType.Bit, 0, "是否掛失"),
            new System.Data.SqlClient.SqlParameter("@IsNull_條形碼", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "條形碼", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_條形碼", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "條形碼", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@Original_編號", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "編號", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_姓名", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "姓名", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_姓名", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "姓名", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_性別", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "性別", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_性別", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "性別", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@Original_類型", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "類型", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_出生日期", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "出生日期", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_出生日期", System.Data.SqlDbType.SmallDateTime, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "出生日期", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_有效證件", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "有效證件", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_有效證件", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "有效證件", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_證件號碼", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "證件號碼", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_證件號碼", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "證件號碼", System.Data.DataRowVersion.Original, null),
            new System.Data.SqlClient.SqlParameter("@IsNull_聯系方式", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "聯系方式", System.Data.DataRowVersion.Original, true, null, "", "", ""),
            new System.Data.SqlClient.SqlParameter("@Original_聯系方式", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "聯系方式", System.Data.DataRowVersion.Original, null),

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成a天堂v人片| 亚洲一区二区三区免费视频| 777a∨成人精品桃花网| 99视频一区二区| 99久久精品免费| 不卡免费追剧大全电视剧网站| 国产精品亚洲成人| 国产一区二区福利| 成人免费视频免费观看| 91小视频在线观看| 91行情网站电视在线观看高清版| 在线免费观看一区| 56国语精品自产拍在线观看| 日韩一区二区麻豆国产| 精品国产91乱码一区二区三区| 久久久久久久一区| 国产精品久久久久久久久免费桃花 | 美女高潮久久久| 精品亚洲欧美一区| av高清久久久| 欧美日韩免费观看一区二区三区| 欧美人与禽zozo性伦| 日韩一区二区三区免费看| 久久久精品免费免费| 亚洲欧洲精品一区二区三区| 亚洲天堂免费在线观看视频| 日韩高清在线电影| 国产精品综合在线视频| 色偷偷久久人人79超碰人人澡| 欧美午夜视频网站| 日韩精品在线网站| 18涩涩午夜精品.www| 天天爽夜夜爽夜夜爽精品视频| 激情综合色播五月| 91小视频在线免费看| 欧美成人在线直播| 亚洲欧美另类小说视频| 精东粉嫩av免费一区二区三区| va亚洲va日韩不卡在线观看| 日韩一区二区麻豆国产| 亚洲天堂免费看| 国产一区视频网站| 欧美日韩亚洲丝袜制服| 中文字幕av一区二区三区高| 亚洲国产日韩a在线播放性色| 国产精品一区专区| 欧美日韩高清一区二区三区| 国产亚洲人成网站| 日本视频免费一区| 在线影视一区二区三区| 国产日韩欧美综合在线| 日本91福利区| 欧美性做爰猛烈叫床潮| 国产精品理论在线观看| 国产精一区二区三区| 777久久久精品| 亚洲精品乱码久久久久久日本蜜臀| 老司机精品视频导航| 欧美高清hd18日本| 一区二区三区蜜桃网| 99久久伊人久久99| 久久久久久久免费视频了| 蜜桃91丨九色丨蝌蚪91桃色| 欧美日韩一级大片网址| 亚洲另类一区二区| 色综合久久99| 亚洲裸体在线观看| 91免费视频观看| 亚洲欧洲精品一区二区三区不卡| 国产剧情一区二区三区| 久久久久久久久一| 国产制服丝袜一区| 久久免费电影网| 国产成人久久精品77777最新版本| 精品日产卡一卡二卡麻豆| 人禽交欧美网站| 日韩亚洲欧美中文三级| 青草国产精品久久久久久| 日韩视频123| 久久精品国产精品亚洲综合| 日韩欧美成人午夜| 国产老女人精品毛片久久| 久久久久97国产精华液好用吗| 国模娜娜一区二区三区| 久久精品亚洲一区二区三区浴池| 狠狠色丁香婷婷综合久久片| 久久蜜桃香蕉精品一区二区三区| 精品一区二区久久久| 国产亲近乱来精品视频| av影院午夜一区| 亚洲线精品一区二区三区八戒| 色偷偷久久一区二区三区| 婷婷亚洲久悠悠色悠在线播放| 欧美久久久久久久久中文字幕| 免费成人av在线| 久久精品视频免费观看| 91在线免费看| 亚洲小少妇裸体bbw| 欧美一个色资源| 国产91色综合久久免费分享| 亚洲色图在线播放| 51精品国自产在线| 国产成人综合在线观看| 亚洲免费观看高清完整版在线观看| 精品视频999| 国产精品夜夜嗨| 亚洲精品成人在线| 日韩欧美在线不卡| www.日韩在线| 日本系列欧美系列| 中文字幕一区二区在线播放| 精品视频999| 成人一级片网址| 午夜精品影院在线观看| 久久精品视频免费观看| 欧美老女人在线| 不卡视频在线观看| 老司机免费视频一区二区三区| 国产精品高潮久久久久无| 91精品国产福利| av一区二区不卡| 久久精品久久综合| 亚洲福中文字幕伊人影院| 久久久蜜桃精品| 欧美精品三级日韩久久| 99久久er热在这里只有精品66| 日韩在线卡一卡二| 亚洲精品免费看| 中文字幕欧美区| 精品国产在天天线2019| 欧美日韩国产综合久久| 91一区二区三区在线观看| 黄色精品一二区| 青青草国产精品亚洲专区无| 一区二区三区欧美日| 国产精品每日更新在线播放网址| 日韩欧美一区二区三区在线| 欧美视频在线观看一区| 成人av电影免费在线播放| 久久99精品网久久| 麻豆高清免费国产一区| 五月天网站亚洲| 亚洲免费av高清| 亚洲男人的天堂一区二区| 国产精品色噜噜| 国产欧美一区在线| 国产嫩草影院久久久久| 国产亚洲综合性久久久影院| 日韩精品一区二区三区四区视频| 欧美伊人精品成人久久综合97 | 一区二区三区不卡在线观看 | 亚洲一区精品在线| 一区二区三区日韩在线观看| 亚洲免费观看高清完整版在线观看| 国产精品热久久久久夜色精品三区 | 欧美一区二区三区白人| 91精品国产色综合久久ai换脸| 欧美日韩三级一区| 欧美三级日韩在线| 91精品国产91久久久久久最新毛片| 欧美日韩精品福利| 欧美日本在线播放| 日韩情涩欧美日韩视频| 久久亚洲春色中文字幕久久久| 久久蜜臀中文字幕| 国产精品久久久久久久久免费相片| 国产精品视频一区二区三区不卡| 欧美国产激情二区三区| 国产精品国产成人国产三级| 一区二区三区国产精品| 偷拍亚洲欧洲综合| 捆绑调教一区二区三区| 国产成人免费在线观看不卡| 99在线视频精品| 欧美二区三区的天堂| 2014亚洲片线观看视频免费| 中文字幕一区二区三区乱码在线 | 在线亚洲免费视频| 欧美电影在线免费观看| 欧美mv日韩mv国产| 中文字幕一区二区三区四区| 亚洲乱码中文字幕| 六月婷婷色综合| aaa欧美色吧激情视频| 欧美日韩国产免费一区二区 | 国产99久久久国产精品潘金| 99re热这里只有精品视频| 欧美理论在线播放| 国产日韩一级二级三级| 亚洲一二三区不卡| 国内精品视频一区二区三区八戒| thepron国产精品| 欧美精品成人一区二区三区四区| 精品国产自在久精品国产| 综合中文字幕亚洲| 久久99久久精品欧美| 色综合一区二区三区| 亚洲精品一线二线三线| 亚洲福中文字幕伊人影院| 成人免费av资源|