I'm using bootstrap with tabs and controlling navigation with a fragment identifier in the URL. This is my current usage from a Controller that is calling a view:
return RedirectResult(Url.Action("Dashboard",
new { id = account.Id }) + "#tab_NotesTab");
This works great, but now I need to pass the model from my action. Normally I pass it with the standard syntax:
return View(model);
How do I do both? I want to pass both a model and the fragment identifier to the View.