-->

Monday, March 3, 2014

Date of weeks in C# programming

Date of weeks in C# programming

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default6.aspx.cs" Inherits="Default6" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Total weeks</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Button ID="Button1" runat="server" Text="Total Weeks" 
            onclick="Button1_Click" />
        <br />
        <br />
        <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
    </div>
    </form>
</body>
</html>

// Code behind class

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Default6 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
       //initialize the datetime class instance 
        DateTime currentdate = new DateTime();

        Label1.Text = "current date : " + currentdate.ToLongDateString() +"<br/>";

        Label1.Text += "Week Date ";
        Label1.Text += currentdate.DayOfWeek.ToString()+"<br/>";


        int dayOfWeek = (int)currentdate.DayOfWeek;

        Label1.Text += "Day of week ";
        Label1.Text += dayOfWeek; 
    }
}

Code generate the following output

Date of weeks in C# programming

Read other related articles

Also read other articles

© Copyright 2013 Computer Programming | All Right Reserved