I found a workaround by using JavaScript for the onclick event of the link:
var doc = window.open();doc.location.href = "file:\\\c:\path\to\abc%23123.txt";return false;
This opens a new window a required and then sets the URI with number sign.
I found a workaround by using JavaScript for the onclick event of the link:
var doc = window.open();doc.location.href = "file:\\\c:\path\to\abc%23123.txt";return false;
This opens a new window a required and then sets the URI with number sign.