Bij diverse Request.BinaryRead commentaar toegevoegd over "Operation not Allowed"

(als statische string zodat precompiler het commentaar niet stript)

svn path=/Website/trunk/; revision=54579
This commit is contained in:
Jos Groot Lipman
2022-01-18 12:02:53 +00:00
parent 1818b252f1
commit 05ce7508fe
5 changed files with 5 additions and 0 deletions

View File

@@ -39,6 +39,7 @@
fileStream = Server.CreateObject("ADODB.Stream");
fileStream.Type = 1; // adTypeBinary eerst nog
fileStream.Open();
"Error 'Operation not Allowed' op de volgende regel betekent meestal dat de upload te groot is";
fileStream.Write(Request.BinaryRead(bytes));
if (API.apidata.loglevel & 1 || __Logging > 0)

View File

@@ -174,6 +174,7 @@ api2_rest = {
bodyStream.Open();
try
{
"Error 'Operation not Allowed' op de volgende regel betekent meestal dat de upload te groot is";
bodyStream.Write(Request.BinaryRead(bytes));
}
catch(e)

View File

@@ -32,6 +32,7 @@
byteCount = Request.TotalBytes
on error resume next
"Error 'Operation not Allowed' op de volgende regel betekent meestal dat de upload te groot is";
RequestBin = Request.BinaryRead(byteCount)
myErr = Err.Description
on error goto 0

View File

@@ -64,6 +64,7 @@ fileStream.Type = 1; // adTypeBinary eerst nog
fileStream.Open();
try
{
"Error 'Operation not Allowed' op de volgende regel betekent meestal dat de upload te groot is";
fileStream.Write(Request.BinaryRead(bytes));
}
catch(e)

View File

@@ -324,6 +324,7 @@ Public Function VB_getfiles()
if byteCount = 0 then Response.End
on error resume next
'' Error "Operation not Allowed" op de volgende regel betekent meestal dat de upload te groot is
RequestBin = Request.BinaryRead(byteCount)
myErr = Err.Description
on error goto 0