我正在开发一个ASP.NET MVC页面,让用户在对Pdf文档进行数字签名后上传它。 但由于某种原因,即使正确显示了图形,也会在上传文档时破坏签名。 这是我用来上传文件的代码:
$(document).on('click', 'input[value=Upload]', function (e, argument) {
var formdata = new FormData();
for (i = 0; i < document.getElementById('FileBox').files.length; i++) {
formdata.append(document.getElementById('FileBox').files[i].name, document.getElementById('FileBox').files[i]);
}
var url = '@Url.Action("Upload", "Test")'
var xhr = new XMLHttpRequest();
xhr.open('POST', url);
xhr.send(formdata);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
var response = $.parseJSON(xhr.response);
alert(response.result);
}
}
});
我正在检索控制器中的上传文件,如下所示:
Public Function PostedFiles() As List(Of Byte())
Dim retval As New List(Of Byte())
Dim oRequest As HttpRequest = Web.HttpContext.Current.Request
For Each sFileKey As String In oRequest.Files
Dim oFile As HttpPostedFile = oRequest.Files(sFileKey)
If oFile.ContentLength > 0 Then
Dim iLength As Integer = oFile.ContentLength
Dim oBytes(iLength) As Byte
Dim oStream As System.IO.Stream = oFile.InputStream()
oStream.Read(oBytes, 0, iLength)
retval.Add(oBytes)
End If
Next
Return retval
End Function
在SQL服务器数据库中保留字节数组后,当我从数据库中取回它时,不再有任何签名,只有它的图形表示。
答案 0 :(得分:0)
感谢Mkl的评论,我发现自从文档显示在浏览器中后我没有签名。在Acrobat Reader中打开持久文件会成功显示签名。