如何使用c#在日期中向上移动st,nd,rd?

时间:2015-05-14 06:39:59

标签: javascript c# html date

我的输出格式日期为14th May 2015

但是14 th中我想要的输出应该使用C#提高一点。

StrBuilder.AppendFormat(@"<tr><td>Delivery Date & Time</td><td align='left' style='text-align:left;'>-  {0}</td></tr>", (string.IsNullOrEmpty(txtDeliveryDate.Text) ? "" : (string.IsNullOrEmpty(txtETime.Text) ? Common.ConvertValidDateFormat(txtDeliveryDate.Text).ToString("dd MMM yyyy") :  Common.ConvertValidDateFormat(txtDeliveryDate.Text).ToString("dd MMM yyyy") + " at " + txtETime.Text)));

1 个答案:

答案 0 :(得分:0)

<sup>标签正是您所需要的。

如果您不想这样做。你可以使用css

position: relative;
top: -0.5em;
font-size: 80%;

演示http://jsfiddle.net/j8au1pk3/

另请查看this question