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:…