protected void Del_Click(string Newsno) { SqlConnection Conn = new SqlConnection(); Conn.ConnectionString = ConfigurationManager.ConnectionStrings["sqlString"].ConnectionString; DataTable dt = new DataTable(); try { string CmdString = @""; CmdString = @"DELETE FROM News where Newsno=@Newsno "; SqlCommand cmd = new SqlCommand(CmdString, Conn); cmd.Parameters.AddWithValue("Newsno", Newsno); Conn.Open(); cmd.ExecuteNonQuery(); DataTable dt2 = News(); Grid_News.DataSource = dt2; Grid_News.DataBind(); del_img(Newsno); ScriptManager.RegisterStartupScript(Page, GetType(), "alert", "<script>swal('刪除成功')</script>", false); } catch (Exception ex) { DB_string.log("News_del:", ex.ToString()); ScriptManager.RegisterStartupScript(Page, GetType(), "alert", "<script>swal('刪除失敗')</script>", false); } finally { Conn.Close(); } }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (Session["Username"] == null) { Response.Redirect("../../login.aspx"); } else { DataTable dt = News(); Grid_News.DataSource = dt; Grid_News.DataBind(); } } }