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 6647891
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:35:28+00:00 2026-05-26T00:35:28+00:00

How does one obtain the form data after submitting it? <form target=_self runat=server> <p>

  • 0

How does one obtain the form data after submitting it?

<form target="_self" runat="server">
    <p>
    <select id="BLAHBLAH2">
        <option>2010</option>
        <option>2011</option>
        <option>2012</option>
        <option>2013</option>
    </select>
    <input type="submit" runat="server" value="Change Year" />
    </p>
</form>

This hits the controller’s Index method. But, there’s nothing in Request.Form. Why?

Second, can I use

<input type="button" instead of type=submit? That is, without introducing ajax via onclick.

Finally, how do I submit to a different method in the controller, e.g. Create?

  • 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-26T00:35:28+00:00Added an answer on May 26, 2026 at 12:35 am

    Try removing those runat server tags. They should not be used in ASP.NET MVC. Also your select doesn’t have a name. If an input element doesn’t have a name it won’t submit anything. Also your option tags must have value attributes which indicates what value will be sent to the server if this options is selected:

    <form action="/Home/Create" method="post">
        <p>
        <select id="BLAHBLAH2" name="BLAHBLAH2">
            <option value="2010">2010</option>
            <option value="2011">2011</option>
            <option value="2012">2012</option>
            <option value="2013">2013</option>
        </select>
        <input type="submit" value="Change Year" />
        </p>
    </form>
    

    But the correct way to generate forms in ASP.NET MVC is to use HTML helpers. Depending on the view engine you are using the syntax might be different. Here’s an example with the Razor view engine:

    @model MyViewModel
    @using (Html.BeginForm("Create", "Home")) 
    {
        <p>
            @Html.DropDownListFor(x => x.SelectedYear, Model.Years)
            <input type="submit" value="Change Year" />
        </p>
    }
    

    Here you have a strongly typed view to some given view model:

    public class MyViewModel
    {
        public string SelectedYear { get; set; }
    
        public IEnumerable<SelectListItem> Years
        {
            get
            {
                return Enumerable
                    .Range(2010, 4)
                    .Select(x => new SelectListItem
                    {
                        Value = x.ToString(),
                        Text = x.ToString()
                    });
            }
        }
    }
    

    which is populated by some controller action that will render this view:

    public class HomeController: Controller
    {
        public ActionResult Index()
        {
            var model = new MyViewModel();
            return View(model);
        }
    
        [HttpPost]
        public ActionResult Create(MyViewModel model)
        {
            ... model.SelectedYear will contain the selected year
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How does one obtain programmatically a reference to the object of which a FieldInfo
In C#, how does one obtain a reference to the base class of a
How does one obtain the complementary hexadecimal value for a given input ? This
In C#, how does one obtain a generic enumerator from a given array? In
How does one obtain the UITableViewCell when within the heightForRowAtIndexPath method, i.e. given the
does one perform better over the other in terms of indexing/quering etc ? e.g.
How does one go about authoring a Regular Expression that matches against all strings
How does one go about referencing a class's static properties in xaml? In other
How does one convert an image from one color profile to another (screen to
How does one go about programatically building a TemplateColumn object and adding it to

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.