本文介绍了如果声明不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

它总是与else一起使用,即使txtUserName.Text =Adm_A为什么会这样?



it always go with else, even if txtUserName.Text = "Adm_A" Why is that ?

If txtUserName.Text Like "Adm_?" Then
            Response.Redirect("AdminLoggedIn.aspx")
        Else
            Response.Redirect("LoggedIn.aspx")
        End If

推荐答案


If txtUserName.Text.Trim() Like "Adm_?" Then
            Response.Redirect("AdminLoggedIn.aspx")
        Else
            Response.Redirect("LoggedIn.aspx")
        End If


if(txtUserName.Text.Contains("Adm_?"))
{
  Response.Redirect("AdminLoggedIn.aspx")
}
else
{
  Response.Redirect("LoggedIn.aspx")
}


这篇关于如果声明不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-27 23:19
查看更多