jjr0319
07-28-2005, 03:20 PM
i have a field in my Access DB that autonumbers, starting at "0001". it's formated correctly in Access, but when the ASP i made pulls the number, it formats it as just "1". how can i get it to keep the leading 0's? i pasted only the portions of the code that deal with this field below:
Do While Not rs.EOF
lognum= rs("LOG_NUM")
<td align="center" valign="middle" width="5%" class="<%= str_class %>"><b>Action Log:</b> <%= lognum %></td>
thanks in advance for the help.
Do While Not rs.EOF
lognum= rs("LOG_NUM")
<td align="center" valign="middle" width="5%" class="<%= str_class %>"><b>Action Log:</b> <%= lognum %></td>
thanks in advance for the help.