Bobby,
You can use the Application.Run command to run a Function. Your code would look like this.
'Inside your forms:
Sub cmdCall_Click(othersub as String)
Application.Run othersub
End Sub
'Inside of a module
Function HelloWorld()
msgbox "Hello World"
End Function
Function HelloSpace()...
You should check to see if the session is empty. Your Menu page passes the ID which is requested to setup your sessions variable. Your addnew.aspx page propably does not pass ID so that would set your session to null.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.