In a table I have news posts with these fields:
- Title
- Content
- OwnerID
And a users table
- ID
- Name
- Surname
The OwnerID relates to the ID in the users table, how can I get the name of the user who's ID matches the OwnerID?
I'm writing a website in ASP.net (VB).