In the _LogonPartial.cshtml there is a actionlink for user to log on, I would like to replace @:[ @Html.ActionLink("Log On", "LogOn", "Account") ]with a button or an image i can use onmouseover and onmouseout but I don’t know how
In the _LogonPartial.cshtml there is a actionlink for user to log on, I would
Share
@Html.ActionLink("Log On", "LogOn", "Account", new { @class = "hover" })then use css to place an image on the link and another when the user hovers on it.