VB.NET & Tan() - Tan() : Returns the tangent of the specified angle. … The following example demonstrates how to calculate the tangent of an angle and display it to the console.
ShotDev Focus:
- VB.NET & Tan()
Example
Tan.aspx
<%@ Page Language="VB" %> <%@ Import Namespace="System.Math"%> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Me.lblText1.Text = Tan(-50.0) Me.lblText2.Text = Tan(25) Me.lblText3.Text = Tan(50) 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 /> <asp:Label id="lblText3" runat="server"></asp:Label><br /> </form> </body> </html>
Screenshot