Exemple #1
0
 protected void ParkGridView_RowDeleting(object sender, GridViewDeleteEventArgs e)
 {
     if (bll.CheckHomePark(Convert.ToInt32(ParkGridView.DataKeys[e.RowIndex].Value)))
     {
         Page.ClientScript.RegisterStartupScript(GetType(), "OnSubmit", "<script>alert('场内有用户停车位,请先删除用户停车位!');location.href='HomeParkInfo.aspx';</script>");
     }
     else
     {
         bll.DeleteBasePark(Convert.ToInt32(ParkGridView.DataKeys[e.RowIndex].Value));
         Page.ClientScript.RegisterStartupScript(GetType(), "OnSubmit", "<script>alert('删除成功');</script>");
         ParkGridView.DataSource = bll.GetBasePark();
         ParkGridView.DataBind();
     }
 }
Exemple #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     user = (UserModel)Session["User"];
     if (Session["User"] == null || Session["User"].ToString() == "" || user.UserType != 1)
     {
         Response.Redirect("../Login.aspx");
     }
     else
     {
         if (!IsPostBack)
         {
             ParkGridView.DataSource = bll.GetBasePark();
             ParkGridView.DataBind();
         }
     }
 }
Exemple #3
0
 protected void NewsGridView_PageIndexChanging(object sender, GridViewPageEventArgs e)
 {
     ParkGridView.PageIndex  = e.NewPageIndex;
     ParkGridView.DataSource = bll.GetBasePark();
     ParkGridView.DataBind();
 }