locked
batchid not formed RRS feed

  • Question

  • User1665719730 posted

    An exception of type 'System.IndexOutOfRangeException' occurred in App_Web_exaa2ech.dll but was not handled in user code

    Additional information: Index was outside the bounds of the array.

    Tuesday, October 16, 2018 12:49 PM

All replies

  • User753101303 posted

    Hi,

    You have a call stack to narrow down where it happens in your code ?

    Scan your code for array[index] access and check your code ensure that "index" is valid. Currently you have for example array|0] to array[7] and you try to access array[11].

    Tuesday, October 16, 2018 1:55 PM