Guest User

Untitled

a guest
Oct 15th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public partial class Site : System.Web.UI.MasterPage
  2. {
  3. //page load event
  4. protected void Page_Load(object sender, EventArgs e)
  5. {
  6. //displaying current date on the label
  7. lblDate.Text = DateTime.Now.ToString();
  8. }
  9. }
  10.  
  11. <header>
  12. <h2>Two Column Layout.</h2>
  13. <br />
  14. <div id="displayDate">
  15. <asp:Label runat="server" ID="lblDate" />
  16. </div>
  17.  
  18. <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="MillerDylanTwoColumn.site" %>
Add Comment
Please, Sign In to add comment