}
4¡¢Login.aspx.csÎļþ public partial class Login : System.Web.UI.Page { //ÄÚ¶¨µÄÓû§ºÍÃÜÂë string tempUserName = "123"; string tempPassword = "123"; protected void Page_Load(object sender, EventArgs e) { string username = Request["username"]; string pwd = Request["pwd"]; if (tempUserName == username && pwd == tempPassword) { //·µ»ØÕ棬²¢ÇÒÒªÌøתµÄÍøÒ³ Response.Write("true||"); } else { Response.Write("false"); } } } ŬÁ¦Ñ§Ï°ÖУ¡
¡¡