How to Pass ArryList or Array of Objects From C# to Javascript? -
i creating list
using linq
in c# following way , works fine.
lst = (from n in dbentity.popup_notes select n).tolist();
now, want use list client side array of objects. when user clicks on links, display specific notes descriptions per name selection.
edit
i want this..
i think need convert list json , return client-side. @ client, can use knockout.js bind data control, way easier binding manually.
Comments
Post a Comment