These are the steps involved:
1) When a user visits your app first, Facebook asks for user permission to allow your app to access certain user details. These permissions are listed here: https://developers.facebook.com/docs/reference/api/permissions/
2) Your app can access his details if user grants permission. Now, you need to store user info in YOUR database, like his user profile id etc (info which he has made available to your app).
3) On re-visit to your app, you can first check whether his details exists in YOUR database or not. If not, it means he is visiting your app first time, render your page accordingly and save his details.
4) In case he has already visited your app once, you can show his last activities, scores etc.
From db perspective, following is a suggested schema:
tbl_users : id | fb_id | fb_username | Name | picture | gender
tbl_logs : fk_users | timestamp | score_reached | other_activity
UPDATE:
Here are some resources
1) You can use facebook toolkit written in asp.net http://facebooktoolkit.codeplex.com/
2) Steven Trefethen in his blog http://www.stevetrefethen.com/blog/DevelopingFacebookapplicationsinCwithASPNET.aspx has given a primer to fb apps in C#
3) This app https://apps.facebook.com/aspdotnetsample/ is also a good point to start. Code is available from http://fgt.codeplex.com/releases/view/76934
4) http://www.nikhilk.net/FacebookNET.aspx blog by Nikhil Kothari