![]() |
Sergey Kornilov admin 1/15/2004 |
Toniadm, <% if IsBinaryField(rsData.Fields("YourFieldName")) then  Response.Write CreateImageControl(rsData, "YourFieldName") else  Response.Write ProcessLargeText(GetData(rsData.Fields("YourFieldName"), "")) end if %>
<% if IsBinaryField(rsData.Fields("YourFieldName")) then Response.Write CreateImageControl(rsData, "YourFieldName") else v = ProcessLargeText(GetData(rsData.Fields("YourFieldName"), "")) Response.Write String( 3-len(v), "0") & v end if %> |
T
|
toniadm author 1/16/2004 |
Thank you Sergey. That worked the leading zeros do display now. After making the changes I also received a different reaction for how many records should display on the page. I have it set to display 30 records at a time on each page, but now it only displays 1 - 6 at a time. It varies. Did I do something wrong? I appreciate any assistance that you could provide. |
![]() |
Sergey Kornilov admin 1/17/2004 |
Toniadm, 'On Error Resume Next |