$("#ok").click(function () {
                if ($("#verify").val().toLowerCase().trim() == $("#ranCode").html().toLowerCase()) {
                    $.post("../Common/Login.ashx", { type: "login", UserName: $("#UserName").val(), PassWord: $("#PassWord").val() }, function (data) {
                        if (data == 1) {
                            alert("登录成功!");
                        }
                        else {
                            alert("用户名或密码不正确!");
                        }
                    });
                }
                else {
                    alert("验证码不正确!");
                    $("#verify").val("");
                    }
            });在一般处理文件Login.ashx中打断点运行后,断点没效果啊