When I deploy our application on server the i am gating issue like
System.IndexOutOfRangeException: Index was outside the bounds of the array.
But i am not gating that issue on my local system.This application also deploy on our local system,local system having working properly but server system having not working.
Help me
Loading

Rahul BansalPosted May 15, 2015, 6:12 AM
void Application_Error(object sender, EventArgs e)
{
Exception ex = Server.GetLastError();
Response.Write(ex.Data + "/" + ex.InnerException + "/" + ex.Source + "/");
Response.End();
}