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

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » Language Basics » Type Convert 
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#)
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.