-1
従来のASPをMVC 5と統合しようとしています。MVC以外のmvcページへのルーティング
旧来のASPログインページにスタートページをルーティングするにはどうすればよいですか? web.configで変更しようとしましたが、古いページにもリダイレクトされません。
<authentication mode="Forms">
<forms loginUrl="~/oldclassicasp/login.asp" timeout="2880" />
</authentication>
routes.MapRoute(
name: "Default",
url: "../oldclassicasp/login.asp",
defaults: new { controller = "", action = "../oldclassicasp/login.asp", id = UrlParameter.Optional }
);
誰にでも解決策がありますか? –
[ASP.NET MVC(C#)の[Classic ASP]]の重複の可能性があります(http://stackoverflow.com/questions/683374/classic-asp-in-asp-net-mvc-c) – Lankymart
@Lankymartは返信いただきありがとうございます。私はちょうどデフォルトのランディングページをASPに設定する必要があります。 –