Skip to content

Instantly share code, notes, and snippets.

@normansolutions
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save normansolutions/06aab85f3b44c6d43646 to your computer and use it in GitHub Desktop.
Save normansolutions/06aab85f3b44c6d43646 to your computer and use it in GitHub Desktop.
// Add this snippet to the ProcessForm() function in the reportingServicesReportSelection.asp
// located in "iSAMS\iSAMS.Framework\modules\StudentManagement\current"
//Get userName
function getCookie(cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1);
if (c.indexOf(name) != -1) return c.substring(name.length, c.length);
}
return "";
}
try {
var userNameCookie = getCookie("iSAMS=UserCode");
if (userNameCookie.length >= 1) {
document.form1.userName.value = userNameCookie.substr(0, userNameCookie.indexOf(
'&'));
} else {
document.form1.userName.value = "-";
}
} catch (err) {
console.log(err);
}
//End Get userName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment