%
Dim strPageTitle
strPageTitle = "My Account"
%>
<%
Sub SubMain(ByRef objQuery)
Call SubContent(objQuery)
End Sub
Sub SubContent(ByRef objQuery)
%>
<%'//LEFT AREA %>
|
|
 |
<%'// Contents Start ------------------------------------------------------------------------------------------------------%>
<%
Dim rsList
Set rsList = funcGetAgentInfoDetail(objQuery, Request.Cookies("user")("AGENT"), Request.Cookies("user")("USER_ID"))
IF rsList.EOF AND rsList.BOF Then
Response.write "There is no data."
Else
%>
<%
End If
rsList.close
Set rsList = Nothing
%>
<%'// Contents End ------------------------------------------------------------------------------------------------------%>
|
 |
|
|
|
|
<%
End Sub
%>