Problem with spaces in href
Brought to you by:
jackwind
If the href to the test JNLP resides in a directory path
with a space in the name, the href does not recognize
any characters past the space.
For example:
<a href=file:/C:/Webstart Files/test.jnlp>
will not direct Internet Explorer to the test.jnlp file.
By adding quotes to this href, the problem goes away:
<a href="file:/C:/Webstart Files/test.jnlp">
Logged In: NO
The examples did not show because of HTML. The less than,
greater than are replaced with () in the examples below:
For example:
(a href=file:/C:/Webstart Files/test.jnlp)
will not direct Internet Explorer to the test.jnlp file.
By adding quotes to this href, the problem goes away:
(a href="file:/C:/Webstart Files/test.jnlp")