asp.net(c#)中消息窗口弹出代码,跪求了
protectedvoidButton1_Click1(objectsender,EventArgse){stringtext=this.TB_YZM.Text.ToSt...
protected void Button1_Click1(object sender, EventArgs e)
{
string text = this.TB_YZM.Text.ToString();
string chkcode = Request.Cookies["validateCookie"].Values["ChkCode"].ToString();
if (!string.IsNullOrEmpty(text) && !string.IsNullOrEmpty(chkcode))
{
if (!chkcode.Equals(chkcode.ToUpper()))
chkcode.ToUpper();
}
if (string.IsNullOrEmpty(text))
{
Button1.Attributes.Add("onclick", "javascript:return window.confirm('您输入的验证码为空,请重新输入!')");
}
if (!text.ToUpper().Trim().Equals(chkcode.Trim()))
{
Button1.Attributes.Add("onclick", "javascript:return window.confirm('输入的验证码错误,请重新输入!')");
}
if (text.ToUpper().Trim().Equals(chkcode.Trim()))
{
string yhm = TB_yhm.Text; 展开
{
string text = this.TB_YZM.Text.ToString();
string chkcode = Request.Cookies["validateCookie"].Values["ChkCode"].ToString();
if (!string.IsNullOrEmpty(text) && !string.IsNullOrEmpty(chkcode))
{
if (!chkcode.Equals(chkcode.ToUpper()))
chkcode.ToUpper();
}
if (string.IsNullOrEmpty(text))
{
Button1.Attributes.Add("onclick", "javascript:return window.confirm('您输入的验证码为空,请重新输入!')");
}
if (!text.ToUpper().Trim().Equals(chkcode.Trim()))
{
Button1.Attributes.Add("onclick", "javascript:return window.confirm('输入的验证码错误,请重新输入!')");
}
if (text.ToUpper().Trim().Equals(chkcode.Trim()))
{
string yhm = TB_yhm.Text; 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
2013-11-06
展开全部
protected void Button1_Click1(object sender, EventArgs e)
{
string text = this.TB_YZM.Text.ToString();
string chkcode = Request.Cookies["validateCookie"].Values["ChkCode"].ToString();
if (!string.IsNullOrEmpty(text) && !string.IsNullOrEmpty(chkcode))
{
if (!chkcode.Equals(chkcode.ToUpper()))
chkcode.ToUpper();
}
if (string.IsNullOrEmpty(text))
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "MessageBox","javascript:return window.confirm('您输入的验证码为空,请重新输入!')",true);
}
if (!text.ToUpper().Trim().Equals(chkcode.Trim()))
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "MessageBox","javascript:return window.confirm('输入的验证码错误,请重新输入!')",true);
}
这样那个就可以了,其实你要的就是在后台注册JS嘛!
你开始的代码是在button上附加事件,当你点过了再附加时间已经没有用了。
{
string text = this.TB_YZM.Text.ToString();
string chkcode = Request.Cookies["validateCookie"].Values["ChkCode"].ToString();
if (!string.IsNullOrEmpty(text) && !string.IsNullOrEmpty(chkcode))
{
if (!chkcode.Equals(chkcode.ToUpper()))
chkcode.ToUpper();
}
if (string.IsNullOrEmpty(text))
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "MessageBox","javascript:return window.confirm('您输入的验证码为空,请重新输入!')",true);
}
if (!text.ToUpper().Trim().Equals(chkcode.Trim()))
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "MessageBox","javascript:return window.confirm('输入的验证码错误,请重新输入!')",true);
}
这样那个就可以了,其实你要的就是在后台注册JS嘛!
你开始的代码是在button上附加事件,当你点过了再附加时间已经没有用了。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询