Skip to content Skip to sidebar Skip to footer

Convert List To Json Array On Client Asp.net Mvc

I have a string List on server that Im sending to a partial view. List list = new List(); list.Add('1'); list.Add('2'); On Client Side I'm converting t

Solution 1:

What your asking for is a plain and simple array, not json.

That aside, just append brackets around it:

var stringList = [@(Html.Raw(Json.Encode(this.Model.StringList)))];
alert(stringList ); 

This works for numbers but if you intend to use it with real string values (like words or such) you'll need a different approach. It isn't clear if you intent to use this with numbers treated as strings as your example or not.

Post a Comment for "Convert List To Json Array On Client Asp.net Mvc"