asp.net mvc - Jak znaleźć dokładnie, który przycisk został kliknięty, gdy nazwy przycisków są identyczne?

Mam następujący kod w moim pliku aspx:

   <% using (Html.BeginForm())
       {

           int i = 0; 
    %>

    <% foreach (var item in Model.Educations)
       { %>
    <fieldset>
        <input type="hidden" name="educations.Index" value="" />
        <p>
            <label for="PID">
                PID:</label>
            <%= Html.TextBox("educations["+i+"].PID", item.PID)%>
            <%= Html.ValidationMessage("PID", "*")%>
        </p>
        <p>
            <label for="EducationType">
                EducationType:</label>
            <%= Html.TextBox("educations["+i+"].EducationType", item.EducationType)%>
            <%= Html.ValidationMessage("EducationType", "*")%>
        </p>
        <p>
            <label for="SchoolName">
                SchoolName:</label>
            <%= Html.TextBox("educations["+i+"].SchoolName", item.SchoolName)%>
            <%= Html.ValidationMessage("SchoolName", "*")%>
        </p>
        <p>
            <label for="UniversityId">
                UniversityId:</label>
            <%= Html.TextBox("educations["+i+"].UniversityId", item.UniversityId)%>
            <%= Html.ValidationMessage("UniversityId", "*")%>
        </p>
        <p>
            <label for="Department">
                Department:</label>
            <%= Html.TextBox("educations["+i+"].Department", item.Department)%>
            <%= Html.ValidationMessage("Department", "*")%>
        </p>
        <p>
            <label for="Degree">
                Degree:</label>
            <%= Html.TextBox("educations["+i+"].Degree", String.Format("{0:F}", item.Degree))%>
            <%= Html.ValidationMessage("Degree", "*")%>
        </p>
        <p>
            <label for="YearOfGraduation">
                YearOfGraduation:</label>
            <%= Html.TextBox("educations[" + i + "].YearOfGraduation", String.Format("{0:F}", item.YearOfGraduation))%>
            <%= Html.ValidationMessage("YearOfGraduation", "*")%>
        </p>
        <p>
            <label for="ID">
                ID:</label>
            <%= Html.TextBox("educations[" + i + "].ID", item.ID)%>
            <%= Html.ValidationMessage("ID", "*")%>
        </p>
        <input type="submit" name="silButton" value="Sil"/>
    </fieldset>
    <% 
        i++;
       } %>
     <p>
        <input type="submit" name="ekleButton" value="Ekle" />
     </p>
    <% } %>
    <div>
        <%=Html.ActionLink("Back to List", "Index") %>
    </div>

W ten sposób mogę dynamicznie dodawać („Ekle”) więcej pól, jeśli użytkownik chce wprowadzić dodatkowe informacje o edukacji (prawdopodobnie z innej uczelni lub innego stopnia).

Ten kod daje także przycisk „Sil” (co oznacza usunięcie) i chcę być w stanie wykryć dokładnie, który przycisk „Sil” został naciśnięty i usunąć ten wpis Edukacja z mojego „obiektu” w sesji.

Moja metoda działania wygląda tak:

public ActionResult Step3(string ekleButton, IList<Education> educations, IList<string> silButton)
        {
            if (educations != null)
            {
                _person.Educations.Clear();
                _person.Educations.AddRange(educations);
            }

            if (ekleButton != null)
            {
                _person.Educations.Add(new Education());
            }

             if (silButton!=null){
              //find index and delete it from _person.Edications

           }
            return View(_person);
        }

W ten sposóbsilButton != null jeśli którykolwiek z przycisków „silButton” został naciśnięty i nie mogę wykryć, który przycisk został naciśnięty. Czy istnieje sposób, aby to sprawdzić?

questionAnswers(1)

yourAnswerToTheQuestion