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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:00:56+00:00 2026-06-04T18:00:56+00:00

[HttpPost] public HttpResponseMessage<Response> Login(string username, string password) { … } I wonder for the

  • 0
[HttpPost]
        public HttpResponseMessage<Response> Login(string username, string password) { ... }

I wonder for the following WebAPI method. How do I pass the parameters into the method? I assume those isn’t the POST data. Since the method did not response when I sent post data from a web form.

<form action="/api/Authenticate/Login" id="loginForm" method="post">
    <fieldset>
    <legend>Userdata:</legend>
        <label for="username">Username</label>
        <input id="username" name="username" type="text" value="" />
        <label for="password">Password</label>
        <input id="password" name="password" type="password" value="" />
        <button type="submit">Login</button>
    </fieldset>
</form>
  • 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-06-04T18:00:56+00:00Added an answer on June 4, 2026 at 6:00 pm

    Web API methods are not intended to be used as actions of HTML forms because they don’t return HTML usually. They are intended to be consumed from regular ASP.NET MVC controllers. So while you could invoke this method using the POST verb and pass the two arguments as part of the POST request body, depending on what media types you have configured would be XML or JSON. Another possibility is to invoke this method using client side javascript AJAX call. Another thing to take into account is the name of the method which is not standard: Login. If you want to be able to invoke it you will need to modify the default route that was created with your application and include the {action} token into the route.

    So:

    routes.MapHttpRoute(
        name: "DefaultApi",
        routeTemplate: "api/{controller}/{id}",
        defaults: new { id = RouteParameter.Optional }
    );
    

    should become:

    routes.MapHttpRoute(
        name: "DefaultApi",
        routeTemplate: "api/{controller}/{action}/{id}",
        defaults: new { id = RouteParameter.Optional }
    );
    

    and you will send a POST request to /api/somecontroller/login.

    And if you want to stick to conventions you will have the following:

    public class LoginController : ApiController
    {
        // POST /api/login
        public HttpResponseMessage<Response> Post(string username, string password)
        {
            ...
        }
    }
    

    and then:

    <form action="/api/login" id="loginForm" method="post">
        <fieldset>
        <legend>Userdata:</legend>
            <label for="username">Username</label>
            <input id="username" name="username" type="text" value="" />
            <label for="password">Password</label>
            <input id="password" name="password" type="password" value="" />
            <button type="submit">Login</button>
        </fieldset>
    </form>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Within my API Controller called Payment, I have the following method: [HttpPost] public HttpResponseMessage
[HttpPost] public ActionResult Login(LoginModel model) { if (ModelState.IsValid) { Authenticate(model.Username, model.Password); return RedirectToAction(Index); }
I have the following Edit method: [HttpPost] public ActionResult Edit(Movie movie) { try {
I have the following Actionresult. [HttpPost] public ActionResult Logon(AdminModel model) { if (model.UserName ==
I have the following DeletePOST action method:- [HttpPost] public ActionResult Delete(int id) { try
If I have the following: [HttpPost] public ActionResult DeclineClaims(String button, String[] Decline) { if
I have the following action/controller on MVC3: [HttpPost] public ActionResult AX_AddItemResponse(ItemResponsesVM response) { return
I have action method [HttpPost] public virtual ActionResult Search(string searchTerm) ... And Form @using
With the following simple action... [HttpPost] public PartialViewResult DoSomething(AnimalInfo animalInfo) { // animalInfo.AnimalKey SHOULD
Suppose you have the following controller action [HttpPost] public ActionResult Save( CustomerModel model )

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.