C# create relative date c# - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

create relative date c#


 1036

Show ResultC#


3

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Class1.cs" Inherits="_Default" %>
<script runat="server">

protected void Page_Load(object sender, EventArgs e)
{


Response.Write(RelativeDate("2018-02-10"));

}

</script>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
</body>
</html>

// in Class1.cs

using System;
using System.Web;
using System.Web.Services;
using System.Globalization;

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

}
[WebMethod]
public static string RelativeDate(string dateString)
{

const int SECOND = 1;
const int MINUTE = 60 * SECOND;
const int HOUR = 60 * MINUTE;
const int DAY = 24 * HOUR;
const int MONTH = 30 * DAY;

DateTime dateValue;
dateValue = DateTime.Parse(dateString);
var ts = new TimeSpan(DateTime.UtcNow.Ticks - dateValue.Ticks);
double delta = Math.Abs(ts.TotalSeconds);

if (delta < 1 * MINUTE)
return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";

if (delta < 2 * MINUTE)
return "a minute ago";

if (delta < 45 * MINUTE)
return ts.Minutes + " minutes ago";

if (delta < 90 * MINUTE)
return "an hour ago";

if (delta < 24 * HOUR)
return ts.Hours + " hours ago";

if (delta < 48 * HOUR)
return "yesterday";

if (delta < 30 * DAY)
return ts.Days + " days ago";

if (delta < 12 * MONTH)
{
int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
return months <= 1 ? "one month ago" : months + " months ago";
}
else
{
int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
return years <= 1 ? "one year ago" : years + " years ago";
}

}

}


By        
The power of the user (%)
1%



The most helpful C# solutions

detect ie C#detect ie C#C#

Click to see more ...

  4.6K     853

get latitude and longitude from ip address c#get latitude and longitude from ip address c#C#

Click to see more ...

  2.8K     257

get real user country C#get real user country C#C#

Click to see more ...

  1.7K     252

Get real client ip address using C# ?Get real client ip address using C# ?C#

Click to see more ...

  1.8K     247

check if cookie exists c#check if cookie exists c#C#

Click to see more ...

  6.3K     173

get city country region timezone c#get city country region timezone c#C#

Click to see more ...

  2.7K     163

How to detect the browser opera using C# in asp.net ?How to detect the browser opera using C# in asp.net ?C#

Click to see more ...

  2.3K     136

get hostname using C#get hostname using C#C#

Click to see more ...

  1.1K     127

Get real client latitude and longitude using C# ?Get real client latitude and longitude using C# ?C#

Click to see more ...

  829     127

how to initialize a connection to mysql database using C# ?how to initialize a connection to mysql database using C# ?C#

Click to see more ...

  1.2K     122

Welcome aboard!
We are happy you are here and
wish you good net-raft!