源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

内容添加asp.net

  • 时间:2021-05-16 11:34 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:内容添加asp.net
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="出现错误";                                     }                 finally{                 conn.Close();                 }             }         }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部