skip to Main Content

ASP.NET hourglass on loading page

On my new job there is a web-application written in Visual Basic .NET with usage of ASP.NET Webforms framework for producing and rendering of webpages. It runs on a Windows server and requires Microsoft IIS web-server as an application host.…

VIEW QUESTION

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

Ocelot Gateway duplicate query params – Asp.net

I am using ocelot gateway. Here is the example configuration { "DownstreamPathTemplate": "/ipgeo?apiKey={key}&ip={ip}", "DownstreamScheme": "http", "DownstreamHostAndPorts": [ { "Host": "api.ipgeolocation.io", "Port": 80 } ], "UpstreamHttpMethod": ["GET"], "UpstreamPathTemplate": "/GLI/secondary?apiKey={key}&ip={ip}" } As you can see, there are two query params. When I…

VIEW QUESTION
Back To Top
Search