(asp)我用js调用后台函数,但onclick只有部分有效。而页面打开时它又自动运行了无效的部分,怎么解决?
js代码:<scripttype="text/javascript"language="javascript">functionLastLogin1(){if(Login...
js代码:
<script type="text/javascript" language="javascript">
function LastLogin1() {
if (LoginLogin2()) { //格式验证,正常运行了
var Logina = "<%=LastLogin3() %>"; //调用后台,页面打开时自动运行了,点onclick时连接数据库没有运行,但它的值又返回过了了。我试着在后台写了个弹出窗口,也是页面开始时自动运行了,onclick无效
if (Logina=="1")
alert("登录成功");
else
alert("账号或密码错误");
}
}
</script>
前台:
<input id="Button1" type="button" value="注册" onclick="LastSignup1()" runat="server" EnablePageMethods="true" />//因为项目要求不能用直接的服务器控件
后台:
public string LastLogin3()
{
try {
string LastLoginId=this.LoginId.Value;
string LastLoginPwd=this.LoginPwd.Value;
HotleManBLL.SignupAndLoginBLL lastLogin= new HotleManBLL.SignupAndLoginBLL();
if (lastLogin.Login(LastLoginId, LastLoginPwd))//通过三层验证账号密码是否正确
return "1";
else
return "-1";
}
catch
{
return "-1";
}
} 展开
<script type="text/javascript" language="javascript">
function LastLogin1() {
if (LoginLogin2()) { //格式验证,正常运行了
var Logina = "<%=LastLogin3() %>"; //调用后台,页面打开时自动运行了,点onclick时连接数据库没有运行,但它的值又返回过了了。我试着在后台写了个弹出窗口,也是页面开始时自动运行了,onclick无效
if (Logina=="1")
alert("登录成功");
else
alert("账号或密码错误");
}
}
</script>
前台:
<input id="Button1" type="button" value="注册" onclick="LastSignup1()" runat="server" EnablePageMethods="true" />//因为项目要求不能用直接的服务器控件
后台:
public string LastLogin3()
{
try {
string LastLoginId=this.LoginId.Value;
string LastLoginPwd=this.LoginPwd.Value;
HotleManBLL.SignupAndLoginBLL lastLogin= new HotleManBLL.SignupAndLoginBLL();
if (lastLogin.Login(LastLoginId, LastLoginPwd))//通过三层验证账号密码是否正确
return "1";
else
return "-1";
}
catch
{
return "-1";
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询