VB.NET & Exp() - Exp() : Returns e (the base of natural logarithms) raised to a power. … Note: The Exp function complements the action of the Log function and is sometimes referred to as the antilogarithm.
ShotDev Focus:
- VB.NET & Exp()
Example
Exp.aspx
<%@ Page Language="VB" %> <%@ Import Namespace="System.Math"%> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Me.lblText1.Text = Exp(2.5678) Me.lblText2.Text = Exp(-1.5678) End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form runat="server"> <asp:Label id="lblText1" runat="server"></asp:Label><br /> <asp:Label id="lblText2" runat="server"></asp:Label><br /> </form> </body> </html>
Screenshot