Hi There,
I'm using Ezaspsite for my homepage. An item on the mainpage is news.
When I put news on it often doesn't display what I want it to.
I found out that the lenght of the news on the mainpage is hardcoded. I put the code below. I already changed the number from 350 to 500.
Can anyone help me to change this code into something that reads the item and displays it until it runs across e.g. [#] or something.
Thanks in advance..
Greetings, Koen
If blnWordCut = True Then
If len(strNewsItem)>500 then
strNewsItem = left(strNewsItem,500) & "<br><br><a href=""forum/forum_posts.asp?TID=" & intNewsID & """ class=""text2"" alt="""& strTxtShowMore &""" title="""& strTxtShowMore &""">"& strTxtShowMore &"</a>"
strMore = True
End If
End If