Skip to content

v2.0.0 Release

Latest
Compare
Choose a tag to compare
@joaf123 joaf123 released this 26 Jan 21:24
· 9 commits to main since this release
c148924

Authentication is now enabled through HttpApplication.UseAuthentication for easy enabling & disabling of auth, inspired by asp.net core
See Example Global.asax:

<%@ Application Language="VB" %>

<script RunAt="server">
    Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
        Me.UseAuthentication()
    End Sub
</script>

Full Changelog: v1.5.0...v2.0.0