<!-- #include virtual="/include/doppelme.asp"-->
<html>
<head>
</head>
<body>
<%
USER_ID = Session("UserID")
'//get avatar key from your database. (sql below is just example code)
'//alternatively you could get this from your session object if you keep this there.
sSQL = "select DoppelMeKey from [YourUserTable] where UserID=" & USER_ID
oRS.Open sSQL, oDB
sDOPPELME_KEY = oRS("DoppelMeKey")
oRS.Close
'//build avatar details from user details
sAVATAR = "<img src=""http://www.doppelme.com/60/TRANSPARENT/" & Server.URLEncode(sDOPPELME_KEY) & "/avatar.png"" alt=""DoppelMe Avatar">"
%>
<table style="width: 400px; margin: 0 auto; text-align:center;"
<tr><td><%=sAVATAR%></td></tr>
<tr><td>Your avatar has been updated!</td></tr>
</table>
</body>
</html>