ASP.NET Function คือส่วนของโปรแกรมที่ทำงานเสร็จสิ้นภายในตัวเองและทำการ Return ค่ากลับไปกับ Call Function
Syntax
Function myFunction
.
.
.
Return Value
End Sub
เมื่อสร้าง Function โปรแกรมแล้วสามารถเรียกใช้งาน Function โดยใช้คำสั่ง myFunction()
Sample
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Me.lblText.Text = MyFunction(100,200)
End Sub
Function MyFunction(ByVal int1 As Integer,ByVal int2 As Integer)
Return int1+int2
End Function
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblText" runat="server"></asp:Label>
</form>
</body>
</html>
สำหรับการใช้งาน Function จะพบเห็นได้จากตัวอย่างอื่น ๆ ถัดไปครับ