initial commit

This commit is contained in:
Siwat Sirichai 2025-06-08 16:22:20 +07:00
commit 252dac3143
1516 changed files with 694271 additions and 0 deletions

28
Global.asax Normal file
View file

@ -0,0 +1,28 @@
<%@ Application Codefile="Global.asax.vb" Inherits="Persons.Global" Language="VB" %>
<script runat="server">
'Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
' ' Code that runs on application startup
'End Sub
'Sub Application_End(ByVal sender As Object, ByVal e As EventArgs)
' ' Code that runs on application shutdown
'End Sub
'Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
' ' Code that runs when an unhandled error occurs
'End Sub
'Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
' ' Code that runs when a new session is started
'End Sub
'Sub Session_End(ByVal sender As Object, ByVal e As EventArgs)
' ' Code that runs when a session ends.
' ' Note: The Session_End event is raised only when the sessionstate mode
' ' is set to InProc in the Web.config file. If session mode is set to StateServer
' ' or SQLServer, the event is not raised.
'End Sub
</script>