Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7636885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:47:54+00:00 2026-05-31T07:47:54+00:00

This is my Viewmodel public class IndexViewModel { public string QuestionText { get; set;

  • 0

This is my Viewmodel

public class IndexViewModel
{
    public string QuestionText { get; set; }
    public string Sname { get; set; }
    public string Cname { get; set; }
    public int CID { get; set; }
    public int SID { get; set; }
    public Question question { get; set; }
    public CoreValue corevalue { get; set; }
    public SubjectType subjecttype { get; set; }

}

and inside my view I have problems this code aint working:

@model NKI3.ViewModels.IndexViewModel

@using (Html.BeginForm()) {
<fieldset>
<div class="editor-label">
@Html.DropDownListFor(model => model.Sname)
</div>
</fieldset>
}

The error message I get is ” No overload for method ‘DropDownListFor takes 1 argument “

Whats the solution?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T07:47:55+00:00Added an answer on May 31, 2026 at 7:47 am
       public class AdminController : Controller
    {
        AdminRepository AdminRep = new AdminRepository();
    
        public ActionResult Index()
        {
            List<Question> ListQuestions = AdminRep.GetAllQuestions();
            var model = new AdminIndexViewModel();  
            model.QuestionList = new List<QuestionViewModel>();
            foreach (var item in ListQuestions)
            {
                var QuestionViewModel = new QuestionViewModel();
                model.QuestionList.Add(QuestionViewModel);
                QuestionViewModel.QuestionText = item.QuestionText;
                QuestionViewModel.QuestionId = item.Id;
                QuestionViewModel.CoreValues = new List<string>();
                foreach (var CoreValues in item.CoreValue)
                {
                    QuestionViewModel.CoreValues.Add(CoreValues.Name);
                }
                QuestionViewModel.SubjectTypes = new List<string>();
                foreach (var SubjectType in item.SubjectType)
                {
                    QuestionViewModel.SubjectTypes.Add(SubjectType.Name);
                }
            }
            return View(model);
        }
    

    View:

    @foreach (var item in Model.QuestionList) {
    <tr>
        <td>
        @Html.DisplayFor(modelItem => item.QuestionText)
        </td>
        <td>
        @string.Join(", ", item.SubjectTypes)
        </td>
        <td>
        @string.Join(", ", item.CoreValues)
        </td>
        <td>
            @Html.ActionLink("Edit", new { id = item.QuestionId}) |
            @Html.ActionLink("Delete", new { id = item.QuestionId })
        </td>
    </tr>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If this is my view model: public class ViewModel{ public string SimpleProperty{get;set;} public SubViewModel
I have something like this public class ViewModel { public List<Books> Test {get; set;}
I have a ViewModel: public class Page { public int Id { get; set;
Suppose you have a viewModel: public class CreatePersonViewModel { [Required] public bool HasDeliveryAddress {get;set;}
I've got a Viewmodel that looks like this: public class Viewmodel { public int
I have a ViewModel that looks like this: public class CreateReviewViewModel { public string
I have the following ViewModel public class ShowQuestionsViewModel { public String CategoryName { get;
I have a ViewModel. something like this public class ViewModel { public int Id
I have the following ViewModel: public class AllQuestionsInCategoriesViewModel { public string Category_Name { get;
Given the following viewmodel: public class SomeViewModel { public bool IsA { get; set;

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.