I have a table in my DB like:

I want to fill the select tag with the MainTab items using the Html.DropDownListFor() extension.
The hardest part is, I want these items to be a string like TabA_Name/TabB_Name/TabC_Name How can I do this ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use View Model for the page that you have dropdownlist. For instance,
In your controller where you return view model to view, fill the list and return that model.
This is your view.
When you post your view back to controller, your view model should have
DropDownListResult that is filled with the selected dropdownlist item.