Base solution for your next web application

Activities of "vvangaveti"

This is known issue with chrome and .net core. You can add below code in startup.cs file

// Manually added to avoid issue in chrome app.Use(async (ctx, next) => { await next(); if (ctx.Response.StatusCode == 204) { ctx.Response.ContentLength = 0; } });

        ![aspnetzero_issue.png](/QA/files/31b81dd296dad137463539ef847681a6.png)
Showing 1 to 1 of 1 entries