asp.net - ASP MVC dynamic fields in editor -


I have a form that will include some optional questions for the user, in my model it may seem that

  Janganese dictionary & lt; String, string & gt; Question {Get; Set; }  

Where is the key label and value text box. How can I control and populate it? I'm new to ASP MVC, but it makes sense that something like that will be made.

Is there any way to do this or do I have to apply it myself? Looks like it should be helpful, because you do not really want to see this type of code.

I have tried

  HTML .EditorFor (model => Model Question);  

But it just exits by looking at "[key, value]".

Comments