paste <%= Left(rsResults.Fields.Item("Description").Value),0,50) %>
where you want it displayied, after the connection is opened.
to stop at x words you could try the following
strDescTemp = rsResults.Fields.Item("Description").Value
saryDESC = split(strDescTemp," ")
intCounter = 1
do WHILE intCounter < Number of words
if not intCounter = 1 then strDesc = strDesc & " "
strDesc = strDesc & saryDESC(intCounter)
intCounter = intCounter +1
loop
you can try teh above code, please note that it hasn't been tested. if you get any errors please feel free to reply back.