simple asp page to display data from sql database

Associate
Joined
24 May 2011
Posts
216
I am not a web developer so was wondering if anyone can help

I have a SQL database that stores information on what Windows patches have been installed to server

The columns are as follows

server, patch, dateinstalled,installedbywho

I want a simple front end asp page what from a drop down box, the server can be selected and it will display the patches installed for that server
 
What database platform is it? I.e MySQL, SQL Server, Access, Oracle, Sybase, DB2 etc.
 
Try going with an MVC project, Data project with EntityFramework installed. Then EF can generate the entities from the existing DB.
 
Back
Top Bottom