Tutorials

Show first [x] characters

You need to use the LEFT function in VBScript or the substring method of the String function in JavaScript.

VBScript
<%=LEFT(rsName.Fields.Item("MemoColumn").Value,100)%>

JavaScript
<%
var myString = (rsName.Fields.Item("MemoColumn").Value)
document.write(myString.substring(0,100))
%>

Notes

You could combine this with the Maintain line breaks tutorial to make sure any line breaks in the first 100 characters are maintained.