私は次の問題を抱えています:例えば私はこのようなルートを持っています:
routes.Add(new Route("forums/thread/{threadOid}/last", new MvcRouteHandler())
Defaults = new RouteValueDictionary(
new { controller = "Thread", action ="ShowThreadLastPostPage"}),
Constraints = new RouteValueDictionary(new { threadOid = @"^\d+$" })
}
);
RedirectToActionメソッドを使用して次のようなURLに移動する方法はありますか?
forums/thread/{threadOid}/last#postOid