1
オーチャード・モジュールで新しいページを作成するにはどうすればよいですか?私はオーチャードに1ページとコントローラを持っていますが、ルートモジュールに新しいページを追加する方法はありますか?オーチャード・モジュールで新しいページを作成
public IEnumerable<RouteDescriptor> GetRoutes() {
return new[] {
new RouteDescriptor {
Priority = 5,
Route = new Route(
"BlogX", // this is the name of the page url
new RouteValueDictionary {
{"area", "BlogX"}, // this is the name of your module
{"controller", "Home"},
{"action", "Index"}
},
new RouteValueDictionary(),
new RouteValueDictionary {
{"area", "BlogX"} // this is the name of your module
},
new MvcRouteHandler())
}
};
}