Hi,
I actually get an identical problem using Netscape. The problem is not the hard coding (although it might be if I migrate servers), it's the directory structure my hosts have set up.
This may only affect ASPWebhosting customers.
I think I've got two options:
i) change the link code BEFORE it get's entered into the Message field, or,
ii) change the body of the message before it gets served with a Replace function
What I've now (partially) done is the latter:
In forum_posts.asp I've added two lines where line 782 was:
'this next line adjusts the image code so that it works in ASPwebhosting's virtual directory call
strMessage = Replace(strMessage,"files/mydomain","files")
so when the page is served, the correct code needed for my hosts is used and the image displayed
I've also adjusted post_preview.asp so that at line 148 it now reads:
<%
'this next line adjusts the image code so that it works in ASPwebhosting's virtual directory call
strMessage = Replace(strMessage,"files/mydomain","files")
%>
So that people can see the image in their preview also.
What I still need to work out how to do is replace the paths in both the edit_post.asp and again in the forum_posts.asp files so that the images are displayed as the posts are being edited or written.
Cheers,
Ali