Ok, well what kind of Database is it? And you have a static page, but you need to create an aspx (aspnet) page with a webform and controls to contain the data your want to display.
My advice is that you refer to a tutorial like this
ASPNET Tutorials
I am willing to help, but you have to do the leg work to bring yourself up to speed as to what is required to make this work, and I can help with implementing this knowledge.
Questions / Things to Consider:
1. What Database do I plan to use? Excel Spreadsheet, Access DB, MS SQL, Oracle, etc?
2. Have I built the database tables & relationships?
3. Have I built the dynamic page (web form & add associated controls) to display the data and provide the functionality I want the page to provide?
4. What tables in the Database do I require to have my dynamic web page function?
5. Have I built the queries / stored procedures I need in the database? Or will I do everything via hard coding with in the page (not recommended past the testing stage)?
6. If yes to 5, have I tested them in the DB to insure they will return expected results?
Hope this helps