Click here to Skip to main content
15,885,128 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
At ViewBag.users have only one object:

C#
@foreach (var c in ViewBag.users)
{

    var Username = @c.Username;
    var Nome = @c.Nome;


}



And below there is:
@Html.TextBoxFor(model => model.Username, new { @Value = @Username, maxlength = 50 })

It gets me error:

Error 1 The name 'Username' does not exist in the current context
Posted
Comments
I.explore.code 12-Apr-13 18:37pm    
did you try moving the @Html statement inside the loop and see if that works?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900