How to find datetime difference in milli seconds using ASP.NET using c# example

Category > ASP.NET || Published on : Wednesday, August 27, 2014 || Views: 7080 || datetime difference milli seconds difference c sharp example find datetime difference milli seconds datetime difference datetime


Introduction:-

Here Pawan Kumar has explained, How  to find datetime difference in milli seconds using  ASP.NET using c# example

Description:-
In previous post, I explained How to do Cross-Page Posting in Asp.Net and C#, How to use UpdateProgress control in Asp.Net and C Sharp, How to play YouTube videos in ASP.NET Web Application, How to develop a Simple Chat Application in C# Using SignalR, How to use AJAX Timer Control in ASP.NET using C# with Example and Source Codes, How can we Insert, Update, Delete Records in ASP.NET Server Control ListView in ASP.NET with C#, How to Convert Numbers to Words String in ASP.NET using C#

Sometimes we need to find the datetime difference in milli second. To solve this problem, first create a datetime object with current datatime initilzation then we create another datatime object and add 5 minutes to tha object. To get the datetime differnce we use "Time Span" like below
        TimeSpan ts = dateAfter2Minutes - now;

So starts the coding. first create ASP.NET empty web application using Visual Studio 2010, then create a aspx page with the following codes.

So follow the steps to create "How  to find datetime difference in milli seconds using c# example." in ASP.NET Application

Step 1: First, we start by creating an Empty ASP.NET web site in Visual Studio .NET 2010.


http://www.sourcecodehub.com/articleimages/ajax-timer-control-in-aspnet/Create-website-visual-studio-1

Create-website-visual-studio-new-website2


Step 2: Create an ASPX Page for Right Click on Solution Explorer > Add Items > Web > Webform and save it as "Default.aspx".When we first open our Default.aspx page

add-new-webform-visual-studio-3

add-new-webform-visual-studio-add-name4

Step 3: Write the below following codes in your ASP.NET Web page

<%@ Page Language="C#" AutoEventWireup="true"%>
    
      
      
      
"http://www.w3.org/1999/xhtml">      
"Head1" runat="server">      
    How  to find datetime difference <span style="color:Blue">in</span> milli seconds <span style="color:Blue">using</span> c# example |datetime difference <span style="color:Blue">in</span> milliseconds      
      
      
    "form1" runat="server">      
    

How to find datetime difference in milli seconds using c# example |datetime difference in milliseconds


"Label1" runat="server" Font-Size="Large" Font-Names="Verdana" >

"Button1" runat="server" Text="Get milliseconds difference between two datetime" OnClick="Button1_Click" Height="40" Font-Bold="true" />

Step 4: Run the Application by Pressing "Run" icon on Visual Studio or by pressing F5 key on the keyboard. Output will be like below screenshot.

Conclusion:
So, In this tutorial we have learned, How  to find datetime difference in milli seconds using c# example.

Download Source Codes