Convert date to string (C#) : Type Convert « Language Basics « ASP.Net






Convert date to string (C#)

<script Language="c#" runat="server">
void Page_Load() {
  string strEarn = "150";
  string strTax = "23.0";

  double dblEarn = Convert.ToInt32(strEarn);
  decimal decTax = Convert.ToDecimal(strTax);
  double dblTotal = dblEarn - ((dblEarn/100) * (double)decTax);
  Display1.Text = dblTotal.ToString();
  DateTime datNow = DateTime.Now;
  Display2.Text = " " + datNow.ToString("d");
}
</script>

<html>
<head>
  <title>Declaring Variables</title>
</head>
<body>
  Your total earnings after tax are $
  <asp:label id="Display1" runat="server" />
  <br />
  The date is
  <asp:label id="Display2" runat="server" />
</body>
</html>

           
       








Related examples in the same category

1.Convert string to double (VB.net)
2.Convert int value to string (VB.net)
3.Convert selected date from asp:Calendar to long string (VB.net)
4.Convert value in asp:TextBox to int in try catch block (VB.net)
5.Convert value in asp:TextBox to date in try catch block (VB.net)
6.Convert value in asp:TextBox to bool in try catch block (VB.net)
7.Convert value from asp:TextBox to int and compare (VB.net)
8.Convert Now (current date) to string (C#)
9.Output ASCII Code (C#)
10.Convert String to int and decimal (C#)
11.Convert double and date to string (C#)
12.Int, String and date variables (C#)
13.Read string from asp textbox and format it to DateTime (C#)
14.Convert int to String (C#)