Get Current Server Name From URL Using Javascript In Domino Web Application
Join the DZone community and get the full member experience.
Join For Free// Get the Current Server Name from the URL using Javascript for Domino Web Applications
//Get Server
loc1 = location.href;
in1 = loc1.indexOf(".nsf") + 4;
var server1 = Left(loc1,in1);
Web application
JavaScript
Opinions expressed by DZone contributors are their own.
Comments