i have a drop down list. I am selecting multiple options and saving it but in edit mode, i want the selected item to be selected back in list of item in drop down list in Mvc using razor
// here i am uploading document by selecting users
<fieldset>
<legend>DocShared</legend>
<div class="editor-label">
<label for="file">Please select File To Upload</label>
</div>
<div class="editor-field">
<input type="file" name="ChooseFile" />
</div>
<div class="editor-label">
<label>Please select Single/Muliple Users</label>
</div>
<div class="editor-field">
<input type="text" name="Description" />
</div>
<div class="editor-label">
<label>Description</label>
</div>
<div class="editor-field">
@Html.DropDownListFor(m => m.Users, Model.AllEmployess, new { @id = "multiple", @class = "chosen", @multiple = "multiple", style = "width: 350px;" })
</div>
<p>
<input type="submit" value="Save&Upload" />
</p>
</fieldset>
// now in the edit i am getting a list but i want the dropdownlist selected item (In the same view)