Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページにログアウト機能を実装して、ユーザーがログイン ページにリダイレクトされ、前のページを表示できないようにするにはどうすればよいですか?
FormsAuthentication.SignOut(); is it enough for logout.
Page_Load (object sender, EventArgs e) { if (!User.IsAuthenticated) { Response.Redirect("login.aspx"); }
また、それをマスターページに入れます。