Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Derek Etnyre http://www.dereketnyre.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Get Current Server Name from URL using Javascript in Domino Web Application

// Get the Current Server Name from the URL using Javascript for Domino Web Applications

   1  
   2  //Get Server
   3  loc1 = location.href;
   4  in1 = loc1.indexOf(".nsf") + 4;
   5  var server1 = Left(loc1,in1);
   6  
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS