skip to Main Content

ASP.NET : image returning invalid characters

I have an ASP.NET page that contains the following markup: <td> <asp:FileUpload runat="server" ID="fileSignature" accept=".png,.jpg,.jpeg" /> </td> <td> <asp:Button ID="btnUploadSignature" runat="server" Text="Upload" onclick="btnUploadSignature_Click" /> <asp:Image ID="imgSignature" Visible = "true" runat="server" Height = "100" Width = "100" /> </td> Code behind:…

VIEW QUESTION

Asp.net – NLog logs only to one .log file

I'm using NLog.Web.AspNetCore to makings logs, but Nlog logs only to one all with date .log file (allfile name in nlog.config). There is my nlog.config file <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true" internalLogLevel="Info" internalLogFile="c:tempinternal-nlog-AspNetCore.txt"> <!-- enable asp.net core…

VIEW QUESTION
Back To Top
Search