noritama2の日記: [VS2005] C#でServer.Transferするとき
日記 by
noritama2
public static string LOGIN_PAGE = "/Logon.aspx";
生Transfer
context.Server.Transfer(LOGIN_PAGE);
で飛ばせないとき。
IHttpHandler handler = PageParser.GetCompiledPageInstance(Constants.LOGIN_PAGE, null, null);
context.Server.Transfer(handler, true);
こんなんで飛ばしてみた。
[VS2005] C#でServer.Transferするとき More ログイン