This is not a problem for most decent browsers but it can be a problem for Internet Explorer and so here is a neat bit of LotusScript code to make sure the
slashes are all the right way. This can be used for image hrefs as well as URLs.
Dim s As New notessession Dim db As notesdatabase Set db = s.currentdatabase Dim server As New notesname(db.server) temp = "http://" & server.common & "/" & db.Filepath & "/Display?openagent&name=HooHaa" Msgbox temp ' Neat bit of code to transpose \ with / While Instr(temp, "\") Mid(temp, Instr(temp, "\"),1) = "/" Wend Msgbox temp