Example #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        int applyID = Convert.ToInt32(Request["ApplyID"] == null ? "-1" : Request["ApplyID"]);

        Apply.DeleteApply(applyID);
        Response.Write("<script Language='JavaScript'>alert('申请已撤销!');window.location.href ='../Account/ApplyListPage.aspx'</script>");
    }