程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> session-Response.Redirect (indexp.aspx)在跳轉時沒有反應

session-Response.Redirect (indexp.aspx)在跳轉時沒有反應

編輯:編程綜合問答
Response.Redirect ("indexp.aspx")在跳轉時沒有反應

不知道為什麼,將Response.Redirect ("indexp.aspx")放在頁面的什麼地方都不進行跳轉了,只是登陸頁面閃了一下,之前還是跳轉的,改動一些代碼就這樣了。

 if (pn.IsExit())
        {
            Session["PName"] = UName.Text.Trim();
            Session["PWD"] = PWD.Text.Trim();
            if (Person.Checked)
            { Response.Redirect("indexp.aspx"); }
            if (Company.Checked)
            {
                Response.Redirect("indexc.aspx");
            }
        }
        else
        {
            Response.Write("<script>alert('用戶名或密碼錯誤')</script>");
            return;
        }
            跪求,一下午都在糾結了,如果還是不知道是怎麼回事,就無法進行了。

最佳回答:


redirect後加個Response.End();試試

showbo
qq_27717921
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved