this is how inc_profile.asp ends:
<% if strUseExtendedProfile then %>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td bgColor="<% =strPageBGColor %>" align=center nowrap <%= strColspan %>>
<br>
<INPUT type="hidden" value="<% =Request.Form("MEMBER_ID") %>" name="MEMBER_ID">
<INPUT type="submit" value="Submit" name=Submit1>
</td>
</tr>
<% else%>
<tr>
<td bgColor="<% =strPageBGColor %>" align=center nowrap <%= strColspan %>>
<br>
<INPUT type="hidden" value="<% =Request.Form("MEMBER_ID") %>" name="MEMBER_ID">
<INPUT type="submit" value="Submit" name=Submit1>
</td>
</tr>
<tr>
<td bgColor="<% =strPageBGColor %>" align=center nowrap>
<% end if%>
It left table tags open and all.
Since i'm using extended profile. I had to add </table> at the end of that in order for it not to mess up my layout.
- Alan