Convert value in asp:TextBox to bool in try catch block (VB.net) : Type Convert « Language Basics « ASP.Net






Convert value in asp:TextBox to bool in try catch block (VB.net)

<%@ Page Language="VB" %>
<script runat="server">
    Sub btnConvert_Click(sender As Object, e As EventArgs)
      Try
        lblToInt.Text = cint(txtValueToConvert.Text)
      Catch
        lblToInt.Text = "Could not convert to Integer"
    
      End Try
    
      Try
        lblToDateTime.Text = cdate(txtValueToConvert.Text)
    
      Catch
        lblToDateTime.Text = "Could not convert to Date/Time"
    
      End Try
    
      Try
        lblToBoolean.Text = cbool(txtValueToConvert.Text)
    
      Catch
        lblToBoolean.Text = "Could not convert to Boolean"
    
      End Try
    
    End Sub

</script>
<html>
<head>
</head>
<body>
    <form runat="server">
        <p>
            Original input: 
            <asp:TextBox id="txtValueToConvert" runat="server"></asp:TextBox>
            &nbsp;<asp:Button id="btnConvert" onclick="btnConvert_Click" runat="server" Text="Convert!"></asp:Button>
        </p>
        <p>
            Convert to Integer produces: 
            <asp:Label id="lblToInt" runat="server"></asp:Label>
        </p>
        <p>
            Convert to Date/Time produces: 
            <asp:Label id="lblToDateTime" runat="server"></asp:Label>
        </p>
        <p>
            Convert to Boolean produces: 
            <asp:Label id="lblToBoolean" runat="server"></asp:Label>
        </p>
    </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 from asp:TextBox to int and compare (VB.net)
7.Convert Now (current date) to string (C#)
8.Output ASCII Code (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#)