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" }
) %>
link|improve this question
feedback

1 Answer

Even I am facing similar problem and looks like there is no direct solution to this problem of reading ViewData in parameter section of Html helper methods. For me this part of your code is not working :

new { id = ViewData-DocId }

I asked is the following question :

Passing data to controller while Using URL.Action in jQuery template in Asp.Net MVC dynamic views

link|improve this answer
I found a solution – Sanjay Apr 17 '11 at 18:18
1  
<%foreach(var item in ViewData["Documents"]as SelectList) %> <% {%> <li> <%= Html.ActionLink( item.Text, "GetDocumentPage", "Document", new { id = item.Value }, new { id = "displayDoc" } ) %> </li> <%} %> – Sanjay Apr 17 '11 at 18:19
I was actually missing as SelectList, hence it was not allowing me to iterate before. Hope this helps. – Sanjay Apr 17 '11 at 18:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.