skip to Main Content

Submitted datetime is converted to "0001-01-01T00:00:00" – Docker

In my Razor Pages .NET Core 3.1 application I have the following simple form <form method="post" id="formReport"> <div class="form-group"> <label asp-for="Parameters.From" class="control-label"></label> <input id="txtFrom" asp-for="Parameters.From" type="text" class="form-control" style="width:90%;" /> </div> <button type="submit" class="btn btn-primary btn-sm" title="Show report"> <i class="far fa-eye"></i>…

VIEW QUESTION

How to track dependencies, exceptions and requests for Live Metrics in ASP.NET MVC app?

I've configured Live Metrics for my ASP.NET MVC app with target framework 4.7.2 using the tutorial given in Microsoft Docs: https://learn.microsoft.com/en-us/azure/azure-monitor/app/live-stream#enable-livemetrics-using-code-for-any-net-application In this tutorial, they've given a sample client.TrackDependency() and client.TrackRequest() call in the end. They've also mentioned in comments…

VIEW QUESTION

How to track dependencies, exceptions and requests for Live Metrics in ASP.NET MVC app?

I've configured Live Metrics for my ASP.NET MVC app with target framework 4.7.2 using the tutorial given in Microsoft Docs: https://learn.microsoft.com/en-us/azure/azure-monitor/app/live-stream#enable-livemetrics-using-code-for-any-net-application In this tutorial, they've given a sample client.TrackDependency() and client.TrackRequest() call in the end. They've also mentioned in comments…

VIEW QUESTION

.NET API threading issue (DBContext) – Asp.net

I am implementing an API and as part of it I have setup a custom .Net Middleware service extension UseRequestLoggingModdlewareExtension() that it run between the following: app.UseHttpsRedirection(); app.UseRequestLoggingModdlewareExtension(); app.UseRouting(); The code is simple, and just logs the output of the…

VIEW QUESTION
Back To Top
Search