How to load data that is available from database into html form

I am trying to access data from a table using the GetString () method and that the data is stored in some variable, then it should be loaded into the html form when I click the submit button. How to do it? Please help me......

0


a source to share


1 answer


This question is too general.



To access the database, you need a web server that runs server-side code in a language like ASP.NET, Java, PHP, etc. The server code will be responsible for using the GetString () method to read the table and fill in the data in the form (or better yet, return it to an MVC View or JavaScript via AJAX to load it into an HTML form).

+1


a source







All Articles