Good day.

What is needed:

  • take values ​​from MySQL and display them on a web page.

What is:

  • data in mysql

What I would like to learn from the community:

  • How to implement the transfer mechanism? What exactly should be studied? Neither the frontend, nor the backend was previously engaged.

  • What does a bunch of this transfer mechanism look like? What "technology" or programming languages ​​to use?

Estimated transmission mechanism:

  • A web page using AJAX and JSON requests the necessary data from a C # application, which, processing the request, executes it from the database and sends a response to the web page. If I understand the implementation method from C # <-> MySQL and have already had to implement it, then the SVG + JS <-> C # bundle does not. Using the search stopped on a bunch of SVG image, processed by JS, using AJAX / JSON sends requests to the server. In turn, the server raised a web service for an application in C #?

In general, I realize that the material is quite large, enough time. But now it’s impossible to sort through all unfamiliar technologies. Everywhere all web socets and ADO.NET, etc. flash. Criticize the scheme, offer your own, the easiest option. If possible, with links to various books / courses on the Internet.

Those. Once again, to bring to the end the idea: My SQL -> C # -> ??? ??? ??? -> web server with pages where only SVG image + JS.

  • The SVG standard is based on XML. c # works well with xml, and you can generate and give xml (i.e. svg) of any format. Generating js is also not difficult. - nick_n_a
  • Also c # supports both AJAX and JSON (net 4.0 directly, 2.0 through the library) I don’t see any problems in building this scheme. Try it - work. - nick_n_a
  • Those. I outlined the development steps right? This makes me happy. Thanks, in general, at the moment in the process of learning AJAX and JSON and making requests to a C # application. - Jalt

0