Re: How to create Relative links to inserted images

  •  03-09-2006, 5:59 PM

    Re: How to create Relative links to inserted images

    hi,
     
    You can post process the text afterwards before you stuck it into the database.
    example if what you are seeing is
     
    <img src='http://www.mysite.com/images/picture.jpg'>
     
    and you want really
     
    <img src='../images/picture.jpg'>
     
    then before inserting the data
     
    txt=request.form("editor1")
    txt=replace(txt,"http://www.mysite.com","..")
     
    make sure parent paths are on if you are using 2003
     
    RC
     
     
View Complete Thread