Advertisement
stevennathaniel

WebForm1.aspx.vb

Nov 17th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.48 KB | None | 0 0
  1. Public Class WebForm1
  2.     Inherits System.Web.UI.Page
  3.  
  4.     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  5.  
  6.     End Sub
  7.  
  8.     Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  9.  
  10.         Label2.Visible = True
  11.  
  12.         Label2.Text = "Welcome to My First Web Form: " + TextBox1.Text
  13.  
  14.         Label3.Text = "Anda telah mengunjungi web ini pada jam : " + DateTime.Now.ToString()
  15.  
  16.  
  17.     End Sub
  18. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement