I'm joining to tables which have filds with the same name.
<%
...
Set rsCustomer = Server.CreateObject("ADODB.Recordset")
sql = "SELECT Cu.Name, Co.Name FROM Customer Cu, Contact Co;"
rsCustomer.Open sql, db, adOpenForwardOnly, adLockOptimistic, adCmdText
....
....
Response.Write rsCustomer("Name")
...
%>
What can I do in order to response.write either the Customer name or the Contact name