I have a list of document names and id's in my View Data
ViewData["Documents"] = new SelectList(repo.GetDocumentForMeeting(id), "DocId", "FileName");
I need to display as many action links as the number of doc ids and file names in View Data. I dont want to use the Html drop down to select the values. Is there an easy way to do this ?
<%= Html.ActionLink(
ViewData-Doc Name,
"GetDocumentPage",
"Document",
new { id = ViewData-DocId },
new { id = "displayDoc" }
) %>