How to access a db on WEB if filename has a SPACE

We have a mailin db with the following name :

“Mailin database\prime contact.nsf”

Above name has spaces in it

How can we access above database on a browser as the filename contains a space

Subject: %20

Mailin database\prime contact.nsf

would be

Mailin%20database\prime%20contact.nsf

Subject: it worked !!

Thanks.

Subject: The + should work too…

FYI, the + should work too, so in your example:

Mailin+database\prime+contact.nsf

So, either %20 or + can be used in @replacesubstring if you need to programatically create the links.

-Kyle Huang