how to change list of inputs ina fromto a list of links

vanessaneon

New Member
How can I make the following code be a list of links instead of a list of buttons? \[code\] @foreach (var item in @Model) { using (Html.BeginForm(new { action = "GetL", controller = "L" })) { <input name="fileLocation" type="submit" value="http://stackoverflow.com/questions/11891426/@item" /> } }\[/code\]cshtml c# asp .net
 
Back
Top