nImports Microsoft.VisualBasic
nImports System
nNamespace VI
n
Public Class demo
n Inherits System.Web.UI.Page
n Sub Main(ByVal sender As
System.Object, ByVal e As System.EventArgs) _
n Handles
MyBase.Load ' execute on
page load (.NET event)
n Dim a As VI.ads
n a = new VI.ads ' instantiate application
object
n a.cOrganization =
"demo"
n a.cSchoolName =
"Demo"
n a.cLogo = "<img
SRC='images/vischoollogo.jpg' align=top>"
n a.cLoggedInLogo = _
n "<img SRC='images/vischoollogo.jpg' height=75
align=top>"
n a.cConnectString =
"DRIVER={SQL Server};SERVER="+ _
n "(local);DATABASE=ads_demo;UID=ads;Password=ads1ads2;"
n a.cOrganizationName = "VI
Demo School"
n a.cLoggedInOrganizationName =
"VI School"
n a.cTranscriptHeader = "Demo
School"
n a.cLetterHeader = "Demo
School"
n a.WebResponse = Response ' pass web environment
objects
n a.WebSession = Session
n a.WebServer = Server
n a.WebRequest = Request
n a.Main() ' call method to create web page
n End Sub
n
End Class
nEnd Namespace