Advertisement
rasyid03

WebForm3.aspx.cs

Jul 3rd, 2023
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.54 KB | Source Code | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7.  
  8. namespace act7
  9. {
  10.     public partial class WebForm5 : System.Web.UI.Page
  11.     {
  12.         protected void Page_Load(object sender, EventArgs e)
  13.         {
  14.             if (!IsPostBack)
  15.             {
  16.                 Label1.Text = "ini adalah halaman awal";
  17.             }
  18.             else
  19.             {
  20.                 Label1.Text = "ini adalah halaman postback";
  21.             }
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement