remplaza esto:
<%= Formata(Rs("Assunto")) %>
por esto
<%
PrimerosTreinta=Left(Formata(Rs("Assunto" ;)),30)
IF Instr(PrimerosTreinta," ")=0 Then
PrimerosVeinte=Left(PrimerosTreinta,20)
Response.Write PrimerosVeinte
Else
...
End If
%>
saludos