![]() |
Admin 6/14/2005 |
Hi, |
J
|
JAT 7/13/2006 |
I am generating the same error (using version 4.0, Build 92). Is there something I can do to fix this? The page loads and I can see most of the first row of data with the exception of the field that displays the error, no records appear after the error field. |
J
|
Jane 7/14/2006 |
Please zip and send to support@xlinesoft.com all files from ASPRunnerPro output folder with subfolders along with project file and your sample database. I'll find what's wrong running it on my test box. |
J
|
JAT 1/8/2007 |
Greetings! |
J
|
Jane 1/9/2007 |
Hi, If Mid(ret, Len(ret)) = "#" Then i = InStr(1, ret, "#") title = Mid(ret, 1, i - 1) link = Mid(ret, i + 1, Len(ret) - i - 1) If title = "" Then title = link End If and replace it with this one: If Mid(ret, Len(ret)) = "#" Then i = InStr(1, ret, "#") if i<len(ret) then title = Mid(ret, 1, i - 1) link = Mid(ret, i + 1, Len(ret) - i - 1) If title = "" Then title = link end if End If
|