I have an application in C# Windows Forms and I want to add a feature that is available only by jQuery. I implemented what I need in a new aspx file (new project). The question is, how do I connect it with my WinForms app? I need to send some data from my app to the website. These data are contained in a data structure of type Dictionary and I need them in the same format/structure in my website. Can I embed the website inside my form or do I have to call the aspx project from within my app?
Thanks.
I have an application in C# Windows Forms and I want to add a
Share
You’ll have to post the data in some way to the website. Use a WebRequest with the data in the post to send the List data to the website as eg. XML.
Maybe it would be simpler to upload the results to a database and simply open the browser with some ID to point to the database results. (process.Run(“iexplore http//website.aspx?id=124)