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:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user