I didn't know exactly how to phrase this question, so sorry if it sounded a little weird to you guys. It is a follow up to my question about joined tables and table aliases, only this time my issue is with the ASP.NET markup.
As I said in my previous question, I am making a cheat page for the game Doodle Creatures. I have a Select statement that joins two image directories - Animals and Genes - in order to display the images as shown below. The script now works, but one of my image bindings is wrong.
Here are the first five combinations as they should be:
- Seagull + Big = Albatross,
- Snake + Big = Anaconda,
- Wasp + Small = Ant,
- Cow + Fast = Antelope, and
- Ant + Small = Aphid
Here are the combos as they are now:
- Albatross + Big = Albatross,
- Anaconda + Big = Anaconda,
- Ant + Small = Ant,
- Antelope + Fast = Antelope, and
Aphid + Small = Aphid.
' SelectCommand="SELECT * FROM [CreatureCombos] INNER JOIN [Animals] AS Animal1 ON [CreatureCombos].[NewCreatureID] = Animal1.[AnimalId] INNER JOIN [Animals] AS Animal2 ON [CreatureCombos].[ComboAnimalID] = Animal2 .[AnimalId] INNER JOIN [Genes] ON [CreatureCombos].[ComboGeneID] = [Genes].[GeneId];">
' Width="25%" />+' Width="25%" />=' Width="25%" />
Any suggestions?