How to add seconds to current datetime using DateTime object with Asp.Net C# example

Category > ASP.NET || Published on : Saturday, September 6, 2014 || Views: 10669 || add seconds to current datetime DateTime object with Asp.Net C# example current datetime using DateTime object with Asp.Net


In this tutorial, We are going to learn How to add seconds to current datetime using DateTime object with Asp.Net C# example

Step 1: Create a ASP.NET empty Web Application

Step 2: Create a webform “Default.aspx” and write the following codes.

<%@ Page Language="C#" AutoEventWireup="true" %>



"http://www.w3.org/1999/xhtml">
"Head1" runat="server">
    How to add seconds to current datetime <span style="color:Blue">using</span> DateTime <span style="color:Blue">object</span> with Asp.Net C#
        example


    "form1" runat="server">
    

How to add seconds to current datetime using DateTime object with Asp.Net C# example


"550" align="left" color="orange" /> "Label1" runat="server" Font-Size="X-Large" Font-Names="verdana">

"Button1" runat="server" Text="add 30 seconds to current time" OnClick="Button1_Click" Height="40" Font-Bold="true" BackColor="Orange" />

Step 3:  Run the application or press the F5 Key on the keyboard. You will get the following output as below to add seconds to current datetime using DateTime object with Asp.Net C# example

Conclusion:-
so In this tutorial, we have learned How to add seconds to current datetime using DateTime object with Asp.Net C# example. Happy Coding!!!!

 

Download Source Codes