Use select List Item in razor in mvc3
I'm going to use select list item in razor and it开发者_StackOverflow社区 gives this error:
"Element 'Selectlistitem' its not supported "
@List s = sfc2.MVC.ViewModels.Category.MajorCategories();
First of all, your razor syntax is wrong. If it is a void then you'd have to use it in @{}, e.g.:
@{List s = sfc2.MVC.ViewModels.Category.MajorCategories();}
and second, yeah you should provide more code.
精彩评论