%
strId = request("Id")
' Create a recordset object to store specific table information
Set objRS = Server.CreateObject("ADODB.Recordset")
'Establish what records you want selected for the SQL query string
SQL = "Select * From TblLogin where LoginId =" & strId
'Set the recordset object equal to the SQL query string
objRS.Open SQL, objADO, 1, 3
%>
DEALER DETAIL
<% if objRS("AgentPicture")<> "" then %>
" height="150" width="150">
<% else %>
<% end if %>
|
|
Phone:
|
<%= formatphonenumber(objRS("PhoneNumber"))%>
|
<% if objRS("CellPhone")<> "" then %>
|
Cell:
|
<%= formatphonenumber(objRS("CellPhone"))%>
|
<% end if %>
<% if objRS("FaxNumber")<> "" then %>
|
Fax:
|
<%= formatphonenumber(objRS("FaxNumber"))%>
|
<% end if %>
|
Email:
|
"><%= objRS("EmailAddress")%>
|
">View My Listings
|
Find A Vehicle
|
<% if objRs("Website") <> "" then %>
" target=" ">View My Website
|
<% end if %>
|
|
|
|
<%= Ucase(objRs("firstName"))%> <%= ucase(objRs("LastName"))%>
|
|
<%= objRS("AgencyName") %> - <%= objRS("State") %>
|
|
<%= objRs("Address") %>
|
|
<%= objRs("City") %>, <%= objrs("State") %> <%= objRs("Zip") %>
|
<% if objRs("AgentDescription") <> "" then %>
About Me:
<%= objRs("AgentDescription") %>
|
<% end if %>
|