File: Default.aspx
<%@ Page Language="VB" %>
Untitled Page
File: Calculator.vb
Imports Microsoft.VisualBasic
Public Class Calculator
Public Function Add(ByVal a As Integer, ByVal b As Integer) As Integer
Return (a + b)
End Function
Public Function Subtract(ByVal a As Integer, ByVal b As Integer) As Integer
Return (a - b)
End Function
End Class
UsingAppCodeFolderVB.zip( 1 k)