Seems like a pretty straightforward question, but I can't find it anywhere. Does anyone know the max length the value of a ListItem can be?
I am sure it is more than I will ever need for what I am doing, but just want to be sure.
Seems like a pretty straightforward question, but I can't find it anywhere. Does anyone know the max length the value of a ListItem can be?
I am sure it is more than I will ever need for what I am doing, but just want to be sure.
I think it's theroretically unlimited. So it's just limited by your memory or the browsers capability.
On the server side it can be as long as a string in general. That is int.MaxValue
chars. But you'll get problems on client side earlier.