﻿// JScript 文件
function CheckLogin()
{
    var username=document.getElementById("Control_Top1$Text_Name_Top").value;
    var password=document.getElementById("Control_Top1$Text_Password_Top").value;
    if(username==null || username=="")
    {
        window.alert("请输入用户名!");
        return false;
    }
    if(password==null || password=="")
    {
        window.alert("请输入密码!");
        return false;
    }
    return true;
}
