G
Gopal Krish
Folks,
How to add an array to a ViewState in C#?
I'm doing the following and .net does not likes it.
ViewState["HeadingArray"] = HeadingArray;
where HeadingArray is a two dimensional array.
Any thoughts is really appreciated. thanks....
I also tried
ViewState["HeadingArray"] = (object) HeadingArray;
but no use..it still throws error.
How to add an array to a ViewState in C#?
I'm doing the following and .net does not likes it.
ViewState["HeadingArray"] = HeadingArray;
where HeadingArray is a two dimensional array.
Any thoughts is really appreciated. thanks....
I also tried
ViewState["HeadingArray"] = (object) HeadingArray;
but no use..it still throws error.