﻿
Partial Class Logon
    Inherits System.Web.UI.Page

    Protected Sub okButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles okButton.Click

        loginFailLabel.Visible = False
        If logonTextBox.Text.Trim.ToUpper = "CSTAXI" Then
            Response.Redirect("http://cstaxi.vip.moresys.hk:16780")
        Else
            loginFailLabel.Visible = True
        End If

    End Sub
End Class
