asp.net-mvc-routing

    1熱度

    1回答

    我有一個Web API端點像下面的東西路由 - [HttpPost] [ActionName("ResetPassword")] public HttpResponseMessage ResetPassword(string userName, string Template, string SubjectKey,[FromBody] Dictionary<string, string> Ke

    0熱度

    1回答

    我試圖在MVC應用程序中使用實體框架實現遠程驗證。我需要幫助,試圖定義動作簽名和適當的路由配置。我在我的模型下面的類: ​​ } 我有用於包含幾個上述對象的視圖一個視圖模型。 public class FiscalReportVM { public FiscalReports CurrentFR { get; set; } public FiscalReports Repor

    1熱度

    1回答

    我RouteConfig.cs public static class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.Ig

    2熱度

    1回答

    我有輸入Action方法的問題。 我有這樣的代碼: public ViewResult List(int page_number = 1) { ProductsListViewModel model = new ProductsListViewModel { Products = repository.Products .OrderBy(m => m.Prod

    3熱度

    1回答

    我正在嘗試這樣做。 MyUrl.com/ComicBooks/{NameOfAComicBook} 我RouteConfig.cs搞砸左右,但我在這是完全新的,所以我有麻煩了。 NameOfAComicBook是一個強制參數。 public class RouteConfig { public static void RegisterRoutes(RouteCollection rou

    0熱度

    1回答

    如何允許多個Url訪問我的Elmah錯誤日誌視圖? 現在我有我的網絡配置設置,所以url example.com/Admin/ErrorLog進入錯誤日誌,這很好。我想路線example.com/ErrorLog也路由到Elmah的意見。 下面是配置和路由文件。 <appSettings> ... <add key="elmah.mvc.disableHandler" valu

    1熱度

    2回答

    我正在關注Microsoft Contoso University Tutorial以瞭解MVC。 到目前爲止,我已經創造了3種型號 場 招生 學生 而且我有2個控制器 的HomeController StudentController ,我可以查看學生名單,對學生的包括哪些課程,他們在課程,學生編輯的詳細信息,並添加新的學生成績有什麼細節。 在這一點上,我想更多地瞭解路由,因爲我一直在使用默認的

    0熱度

    1回答

    我需要創建一個自定義路由映射,使我能夠匹配某個url映射中的任何操作。 例如:www.site.com/patient/records/treatments/23其中treatments可能是pacient控制器中的任何操作。 這裏就是我有嘗試,但不工作: routes.MapRoute("records_ho", "{controller}/records/{action}/{recordid}

    1熱度

    1回答

    我裝修的動作(在我的家庭控制器),像這樣: [Route("view-book")] public ActionResult ViewBook(int? id1, string id2) 在我看來,我填充使用JavaScript的一些超鏈接: tbody = tbody + '<a href="@Url.Action("ViewBook", "Home")/' + item.Id + '/'

    0熱度

    1回答

    我有使屬性在路由配置文件路由和我聲明屬性路由作爲 [RoutePrefix("receive-offer")] public class ReceiveOfferController : Controller { // GET: ReceiveOffer [Route("{destination}-{destinationId}")] public ActionR