|
My advice would be to create the game in JavaScript or Flash (If you use Flash I think you can do quite a bit with scripting in Flash to save the high scores), then have some interface to the high scors system on it so you can:
- Make an HTTP request from the game once it's over to submit the score to the database
- Maybe use the MSXML ActiveX Control in JavaScript to retreive the high scores from the server.
Start with your DB. Could be as simple as one table called HighScores with the fields ID (AutoNumber) Name (String) and Score (Integer)
If you've never coded in ASP before, it's not going to be an easy as pie thing to do - however it would be a really good first project. If you want me to I can help you out with the server side high score and how to interface it with JavaScript code. PM me if you want to go ahead with that.
|