Advertisement
Guest User

Untitled

a guest
May 24th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. Server Error in '/u413' Application.
  2.  
  3. There is no row at position 0.
  4.  
  5. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
  6.  
  7. Exception Details: System.IndexOutOfRangeException: There is no row at position 0.
  8.  
  9. Source Error:
  10.  
  11. The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
  12.  
  13. 1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
  14.  
  15. <%@ Page Language="C#" Debug="true" %>
  16.  
  17. or:
  18.  
  19. 2) Add the following section to the configuration file of your application:
  20.  
  21. <configuration>
  22. <system.web>
  23. <compilation debug="true"/>
  24. </system.web>
  25. </configuration>
  26.  
  27. Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
  28.  
  29. Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
  30.  
  31. Stack Trace:
  32.  
  33.  
  34. [IndexOutOfRangeException: There is no row at position 0.]
  35. System.Data.RBTree`1.GetNodeByIndex(Int32 userIndex) +1549942
  36. System.Data.RBTree`1.get_Item(Int32 index) +19
  37. System.Data.DataRowCollection.get_Item(Int32 index) +11
  38. DataLayer.GetViewedPolicies(String sUsername) +120
  39. _Default.Page_Load(Object sender, EventArgs e) +1025
  40. System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
  41. System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
  42. System.Web.UI.Control.OnLoad(EventArgs e) +99
  43. System.Web.UI.Control.LoadRecursive() +50
  44. System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
  45.  
  46. Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3053
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement