How to bind a html doc to display records from a sql server database?
I have a winform application that will use html to display a field from sql server database. 1 how to bind the html doc to the the database. 2 how then display a field called Company for example. 3 what component would you suggest to use to display the html doc. This program is written in C开发者_运维知识库# and I have limited programming in html.
If what you want is a webpage that pulls data from database then you need server side scripting language, you create the html the way you want it to look, and that's it. Html is a markup language for display purposes, on it's own, there is no way it can pull data from a database nor be linked to a database at all. You can embed some javascript on it so that the javascript consumes some web service and updates the page maybe.
精彩评论