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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:45:44+00:00 2026-05-30T23:45:44+00:00

I have got several forms on my page. Here is an example of one.

  • 0

I have got several forms on my page. Here is an example of one.

       <table width="400px">
   @foreach (var menu in Model)
   {
     using (Html.BeginForm())
     {
       <tr>
         <td>
           @menu.Menus
         </td>
          <td>
         @menu.Submenu
         </td>
           <td>
           <input type="submit" name="update" value="Update" />&nbsp;&nbsp;&nbsp;
           <input type="submit" name="delete" value="Delete" />
           @Html.Hidden(@menu.MenuID.ToString());


         </td>

       </tr>
     }
   }

   </table>

I want each of my actions to be invoked by the forms submit button. So the an action will be invoked depending on whether there was the update submit button pressed, or delete button pressed or whether a button was pressed with no name attribute…I also want my form to be post for only.
How can I achieve all that?

  • 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-30T23:45:45+00:00Added an answer on May 30, 2026 at 11:45 pm

    In the view you wrap each button with its own form. For example for update

    @using (Html.BeginForm("Update","Home"))
    {
     @Html.Hidden(menu.MenuID.ToString());      
     }
    
    @using (Html.BeginForm("Delete","Home"))
    {
     @Html.Hidden(menu.MenuID.ToString());      
     }
    

    For each action you’ll have in the controller

    [HttpPost]
    public ActionResult Update(int id)
    {
       //do stuff
     }
    
    [HttpPost]
    public ActionResult Delete(int id)
    {
       //do stuff
     }
    

    I believe though the update needs more than an id, those fields should be included in the form and in the action’s arguments.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have several pages to do with several table on each page. I've got
I have got several classes looking like the one below, and I need to
I've got a problem with VB6. I have a form with several ComboBox objects
I've got several large MFC applications here, and converting them into any other format
I've got a form with several textboxes and one datagrid. One business entity can
My application has got several pages. On some pages I have given a back
I've got several queries I want to run on a single page. I obviously
I've got a solution (.net 4, c#) consisting of a webapplication, several windows forms
Have got an NSString *str = @12345.6789 and want to find out if there
I have got this code: XDocument xdoc = XDocument.Load(URI); XElement root = xdoc.Element(forecast); //get

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.