-->

Sunday, February 23, 2014

Print one month later date in ASP.NET

Print one month later date in ASP.NET

You can use DateTime class for add months in current object of DateTime. DateTime class provides different types of methods to add this types of query like AddDays(), AddMonths() etc. This example cover AddMonth. Now take an simple example for that.

Complete Code 

 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default4.aspx.cs" Inherits="Default4" %>

<!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></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
        <asp:Label ID="Label1" runat="server"></asp:Label>
    
    </div>
    </form>
</body>
</html>
//code file

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

public partial class Default4 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        DateTime d1 = new DateTime();
        Label1.Text += d1.ToLongDateString() + "<br/>";
        DateTime onemonthlater= d1.AddMonths(1);
        Label1.Text += onemonthlater.ToString()+ "<br/>";

        TimeSpan difference = onemonthlater - d1;
        Label1.Text += "difference in days" + difference.Days;

    }
}

Output
Print one month later date in ASP.NET


Read other related articles

Also read other articles

© Copyright 2013 Computer Programming | All Right Reserved