Estoy programando en ASP.NET version Visual Studio 2005, bajo el lenguaje de visual basic. Mi problema es que me sale el mensaje de error :
Cita:
El codigo con el cual estoy trabajando es este:Object reference not set to an instance of an object
Código:
Realmente desconozco que sucede, aunque si creo que esta sucediendo en la variable ArrayList que tengo declarada y donde puse el ojo en el codigo. Si alguien puede ayudarme, se lo agradeceria mucho. Private Sub RememberOldValues() Dim categoryIDList As New ArrayList Dim index As Integer = -1 Dim result As New Boolean For Each row As GridViewRow In GridView1.Rows index = Convert.ToInt32(GridView1.DataKeys(row.RowIndex).Value) If Not IsDBNull(Session(CHECKED_ITEMS)) Then categoryIDList = Session(CHECKED_ITEMS) End If If result = False Then //OJO la linea siguiente es donde me da el error// If Not (categoryIDList.Contains(index)) Then categoryIDList.Add(index) End If Else categoryIDList.Remove(index) End If Next If Not IsDBNull(categoryIDList) And (categoryIDList.Count > 0) Then Session(CHECKED_ITEMS) = categoryIDList End If