在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
上一篇是使用GridView控件实现数据的显示和删除,这一节设计页面,使用GridView控件实现数据的更新操作,当更新时新闻的内容没有输入则提示“不能为空”。 public static void modifynews(newsclass news1) { using (SqlConnection cn = dbconn.GetConnection()) { cn.Open(); SqlCommand cm = new SqlCommand(); cm.Connection = cn; string sql = "update news set title =@content,contents=@as where ID=@id"; cm.CommandText = sql; cm.Parameters.AddWithValue("@content", news1.Title); cm.Parameters.AddWithValue("@as", news1.Contents); cm.Parameters.AddWithValue("@id", news1.ID); cm.ExecuteNonQuery(); } } 步骤二:ObjectDataSource控件从数据源获取数据,选择update选项卡,将“选择方法”设置为“modifynews(newsclass news1)”,单击“下一步”。 运行效果图: 以上就是本文的全部内容,希望大家对熟练使用GridView控件实现数据的修改有所帮助。 |
请发表评论