Convert string to double (VB.net) : Type Convert « Language Basics « ASP.Net






Convert string to double (VB.net)

<%@ page language="vb" runat="server" %>

<script runat="server">
  Sub Page_Load()
    pi.text = Math.PI
    exp.text = Math.E
  End Sub

  Sub Update(Sender As Object, E As EventArgs)
    Dim dblInput As Double = CDbl(input.text)

    sqrt_input.text = dblInput
    sqrt_result.text = Math.Sqrt(dblInput)
 
    abs_input.text = dblInput
    abs_result.text = Math.Abs(dblInput)
 
    log_input.text = dblInput
    log_result.text = Math.Log10(dblInput)
  End Sub
</script>

<html>
  <body>
    <hr />
    Pi = <asp:label id="pi" runat="server" /><br />
    Exponential Constant = <asp:label id="exp" runat="server" />
    <hr />

    <form runat="server">
    Input = <asp:textbox id="input" runat="server" />
    <asp:button text="Submit" runat="server" onclick="update" />
    </form><hr />

    Square root of <asp:label id="sqrt_input" runat="server"/>
    = <asp:label id="sqrt_result" runat="server" /><br />

    Absolute Value of <asp:label id="abs_input" runat="server"/>
    = <asp:label id="abs_result" runat="server" /><br />

    Logarithm of <asp:label id="log_input" runat="server"/>
    = <asp:label id="log_result" runat="server" /><br />

  </body>
</html>

           
       








Related examples in the same category

1.Convert int value to string (VB.net)
2.Convert selected date from asp:Calendar to long string (VB.net)
3.Convert value in asp:TextBox to int in try catch block (VB.net)
4.Convert value in asp:TextBox to date in try catch block (VB.net)
5.Convert value in asp:TextBox to bool 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#)