i have a listing page liststd view which displays all standards
when i click on any standard it redirects to section view
in section view i have a @url.Action to add new Section. A new gets opened but i need standard when the section view get opened so that when saving i can save both standard and section
Hi svibuk,
You can pass it this way.
@Url.Action("InfoAdd", "Info", new RouteValueDictionary(new { id = id }))
OR can also pass this way
Url.Action("InfoAdd", "Info", new { id = id });
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.