Output ASCII Code (C#) : Type Convert « Language Basics « ASP.Net






Output ASCII Code (C#)

<%@ Page Language="C#" Debug="true" %>
<script runat="server">

    void  Page_Load()
    {
        lblASCII.Text += "<Table><TR><TD>Character&nbsp;&nbsp;&nbsp;</TD><TD>ASCII code</TD></TR>";
        for (byte bytCounter=33;bytCounter<255; bytCounter++) {
            lblASCII.Text +=
            "<TR><TD>" + Convert.ToChar(bytCounter) + "</TD><TD>" + Convert.ToString(bytCounter) + "</TD></TR>";
        }
        lblASCII.Text += "</Table>";
    
    }

</script>
<html>
<head>
    <title>Demonstrate String Comparison</title>
</head>
<body>
    <form runat="server">
        For your reference, here are the ASCII codes:<br />
        <asp:Label id="lblASCII" runat="server"></asp:Label>
    </form>
</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.Convert String to int and decimal (C#)
10.Convert double and date to string (C#)
11.Int, String and date variables (C#)
12.Read string from asp textbox and format it to DateTime (C#)
13.Convert int to String (C#)
14.Convert date to string (C#)