String.format date without time
string-format-date-without-time
<%@ Page Language="C#" AutoEventWireup="true"%>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
//this line create a datetime variable.
DateTime now = DateTime.Now;
Label1.Text = "now: " + now.ToString();
//string format date using string.format method.
Label1.Text += "<br /><br />short date: " + string.Format("{0:d}", now);
Label1.Text += "<br />long date: " + string.Format("{0:D}", now);
Label1.Text += "<br />month pattern: " + string.Format("{0:M}", now);
Label1.Text += "<br />year pattern: " + string.Format("{0:Y}", now);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string.format date without time</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string.format date without time
</h2>
<hr width="550" align="left" color="Gainsboro" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="string.format date without time"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to format a string as decimal
- How to format a decimal string to currency
- How to format a decimal string to int
- How to convert an integer to fixed length hex string format
- How to format a string with padding
- How to replace a character in a string
- How to perform string replace by ignoring case
- How to replace a character in a string from a starting index
- How to replace first occurrence of a substring within a string
- String contains regex