I have the following
@Html.ActionLink("Edit", "EditProg", new { id = item.ID })
I like to know how to also supply the above with a name as I need trap this name before it is submitted. Is there something like name = "EditLink"?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
You mean like adding a
nameattribute to the anchor (even if this attribute is not valid on an anchor)?or sending it to the controller as query string parameter?