I've got a Microsoft SQL Database and a MySQL Database that I need to join and put into a GridView.
So far I've been successful using ASP and a SqlDataSource like so
<asp:SqlDataSource
ID="mySqlDataSource" runat="server" ConnectionString="<%$ connectionStrings:cs1 %>"
ProviderName="MySql.Data.MySqlClient" SelectCommand="SELECT DashName, DashIP1,
SNMP_Name, DoesBackup, DashDevType FROM ConfigBackupDevices">
</asp:SqlDataSource>
How ever I'm not sure how to join in the second database. Do I need to do this in the code behind or is it possible in asp?