You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
536 B

<%@ Page Language="VB" Src="vb_login.aspx.vb" Inherits="vb_login"%>
<%@ Register TagPrefix="obout" Namespace="OboutInc" Assembly="obout_AJAXPage" %>
<html>
<head runat="server">
<script language="JavaScript">
function Login()
{
var username = document.getElementById('txtUsername').value;
var password = document.getElementById('txtPassword').value;
ob_post.AddParam("username", username);
ob_post.AddParam("password", password);
ob_post.post(null, "Login", LoginResponse)
}
/* the login ended */