This topic is locked

Text Formatting

1/10/2005 3:46:27 PM
ASPRunnerPro General questions
cagleyleslie author

I have a field in my database called username. I would like the field to display in the asprunner pages in this format: mid(username,7,100). Is this possible? Thanks!

Sergey Kornilov admin 1/13/2005

Hi,
you can modify ..._list.asp file for this purpose. See my changes in bold.

...

strData = Mid(GetData(rs.Fields("UserName"), ""), 7,100)

...