亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

內(nèi)容添加asp.net

 更新時間:2006年10月13日 00:00:00   作者:  
private void Button1_Click(object sender, System.EventArgs e)
        {
            if(this.IsValid){
            OleDbConnection conn=dbconn.createconn();
                conn.Open();
                OleDbCommand cmd=new OleDbCommand();
                cmd.CommandText="insert into a(title,content)values('"+this.title.Text.Trim().Replace("'","")+"','"+this.content.Text.Trim().Replace("'","")+"')";
                cmd.Connection=conn;
                try
                {
                    cmd.ExecuteNonQuery();
                    this.title.Text="";
                    this.content.Text="";
                    this.add_info.Text="提交成功";
                }
                catch
                {
                    this.add_info.Text="出現(xiàn)錯誤";

                                    }
                finally{
                conn.Close();
                }
            }
        }

相關(guān)文章

最新評論