0

I have a very simple question: when loading a web page the Page_Load function is called so that the page can be loaded. In this function can I insert some code that allows me to select and view in the browser the data present in an external database?

  • Hello! We're going to need a lot more information before we can help. You will need "backend" technology running on the server to access your SQL database, such as node (if you're using javascript). In turn your webpage will need to contact the server to do that. I recommend looking for a tutorial! – Dr Rob Lang Apr 23 '21 at 10:27

1 Answers1

0

This answer could be of help.

You could then write a script that fetches data from a database. How you do that is a question in it self but I can recommend checking out w3schools which is good for learning plain Javascript in the beginning.

Cabbe
  • 46
  • 1
  • 3