Hi!
First of all, thumbs up for the URL-rewrite via HeliconTech software!

I´m starting af whole new forum with an emty db, no users yet, and really want have rewrite on forum-urls by default , instead for just making alot of 301-redirects based on title-tags.
My question:
I know I have to do some modifications on the forum-urls, which is ok, an would like to ask if the following code-examples is a propper way to do it?
Code (links til forums from forum-frontpage):
Response.Write("<a title=""" & strForumName & """ href="""& SeoUrlTitle(strForumName, "")&"_forum" & intForumID & strQsSID2 & ".html"">" & strForumName & "</a>")
Code (latest topic in forum-frontpage):
Response.Write("<a href="""& SeoUrlTitle(strSubject, "") &"_topic"& lngTopicID & strQsSID2 &".html"" title=""" & strSubject & """>")
If blnBoldNewTopics AND intUnReadPostCount > 0 Then 'Unread topic subjects in bold
Response.Write("<strong>" & TrimString(strSubject, 30) & "</strong>")
Else
Response.Write(TrimString(strSubject, 25))
End If
Response.Write("</a><br />")
It seems to work, but perhaps there is a better way doing this?
Thanks!

Edited by klr3 - 30 April 2009 at 4:41pm