How to convert string base 64 image js to image in c#?
问题 i want pass base 64 string image to server site then convert to image in c# function readFile(input) { CheckFileUpload(input.files.length) if (input.files && input.files[0]) { var img, inputID = 0; for (var i = 0; i < input.files.length; i++) { var reader = new FileReader(); reader.onload = (function (f) { return function (e) { //<input type="file" id="file_' + inputID + '" name="file_' + inputID + '" class="d-none" value="' + f + '" style="display:none" />'; var fileInput = $('<input/>')