1
Answer

C# forms app web interface, Problem

Moose Pickard

Moose Pickard

14y
1.7k
1
Hi

I have a windows forms application and I need it to have an web interface.
So I need the user to see his inventory in the web and add things to it.

Is it possible to do this with C#? I don't know ASP yet.
I searched the web but didn't find any good tutorials.

So how would you do this?
Please refer me to good tutorials if you know any.

Thank you
Answers (1)
1
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 10y
hi,

This is nothing but JSON string object. you can convert it to the object using System.Web.Script.Serialization.JavaScriptSerializer class.

like

string json = "[{\"url\":\"https://www.filepicker.io/api/file/xyz\",\"filename\":\"image.jpg\",\"mimetype\":\"image/jpeg\",\"size\":10006,\"isWriteable\":true},{\"url\":\"https://www.filepicker.io/api/file/lmn\",\"filename\":\"image2.jpg\",\"mimetype\":\"image/jpeg\",\"size\":45998,\"isWriteable\":true},{\"url\":\"https://www.filepicker.io/api/file/stu\",\"filename\":\"image3.jpg\",\"mimetype\":\"image/jpeg\",\"size\":98071,\"isWriteable\":true}]";
var objects = new JavaScriptSerializer().Deserialize<dynamic>(json);

string url = objects[0]["url"];

hope this will help you.
Accepted
0
piya p

piya p

NA 84 31.6k 10y
Hey thank you very much its working properly..

0
piya p

piya p

NA 84 31.6k 10y
"[{\"url\":\"https://www.filepicker.io/api/file/xyz\",\"filename\":\"image.jpg\",\"mimetype\":\"image/jpeg\",\"size\":10006,\"isWriteable\":true},
{\"url\":\"https://www.filepicker.io/api/file/lmn\",\"filename\":\"image2.jpg\",\"mimetype\":\"image/jpeg\",\"size\":45998,\"isWriteable\":true},
{\"url\":\"https://www.filepicker.io/api/file/stu\",\"filename\":\"image3.jpg\",\"mimetype\":\"image/jpeg\",\"size\":98071,\"isWriteable\":true}]"

are my urls
0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 10y
hi,

Is there any separator between all urls?
can you please share url string what you get from youtube what is your expected result?