Ejemplo n.º 1
0
 protected void btnDeliveryComplete_Click(object sender, EventArgs e)
 {
     SalesReimburseBLL.DeliveryComplete((int)this.ViewState["ObjectId"], ((AuthorizationDS.StuffUserRow)Session["StuffUser"]).StuffUserId);
     if (this.Request["Source"] != null)
     {
         this.Response.Redirect(this.Request["Source"].ToString());
     }
     else
     {
         this.Response.Redirect("~/Home.aspx");
     }
 }