Advertisement
Guest User

Untitled

a guest
Sep 11th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.82 KB | None | 0 0
  1. public partial class _Default : System.Web.UI.Page
  2. {
  3.  
  4.  
  5.     protected void btnSendConfirmation_Click(object sender, EventArgs e)
  6.     {
  7.         lblImplementation.Visible = true;
  8.     }
  9.     protected void Page_Load(object sender, EventArgs e)
  10.     {
  11.         TextBox txtbxSalesPrice20 =
  12.             (TextBox)PreviousPage.FindControl("txtbxSalesPrice");
  13.         lblSalesPrice2.Text = txtbxSalesPrice20.Text;
  14.  
  15.         Label lblDiscountAmount20 =
  16.             (Label)PreviousPage.FindControl("lblDiscountAmount");
  17.         lblDiscountAmount2.Text = lblDiscountAmount20.Text;
  18.  
  19.         Label lblTotalPrice20 =
  20.             (Label)PreviousPage.FindControl("lblTotalPrice");
  21.         lblTotalPrice2.Text = lblTotalPrice20.Text;
  22.  
  23.         this.UnobtrusiveValidationMode = System.Web.UI.UnobtrusiveValidationMode.None;
  24.  
  25.     }
  26.  
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement