skip to Main Content

Pass multiple parameter to Ajax from link in MVC Core – Asp.net

I have this link <a asp-action="goPay" asp-route-id="@item.Appid" asp-route-mem="@item.Memid" asp-route-amt="@item.Areq" asp-controller="Withdraw" class="btn btn-outline-primary mx-1 btn-xs">Pay</a> I want to pass asp-route-id="@item.Appid" asp-route-mem="@item.Memid" asp-route-amt="@item.Areq" to Ajax, I am totally lost on how to receive them in Ajax. I have searched the web, maybe…

VIEW QUESTION

Unusable elements inside the (list view ) asp.net

Why can't I use the (input) I put in my (list view) in the C # code field? <asp:ListView ID="ListV" runat="server"> <ItemTemplate runat="server"> <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label> <tr class="text-center"> <td class="product-remove"></td> <td class="image-prod"> <div class=""> <asp:Image ID="Image1" CssClass=" img" ImageUrl='<%#…

VIEW QUESTION
Back To Top
Search