Hi,
I've these tables with this structure:
Table System
ID int
Name nvarchar
Table Campaign
ID int
IdSystem int
Name nvarchar
I want two dropdownlist in with these data in cascading, the problem is: For doing cascading I need rename the ID of System Table to IdSystem, Then cascading works fine, but I can't do it. So:
How can I do cascading with my relationship?
Thanks