This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select char(32,95,32,32,32,32,95 using ASCII) | |
union | |
select char(124,32,124,32,32,124,32,124 using ASCII) | |
union | |
select char(124,32,124,95,95,124,32,124,32,32,95,95,32,95,32,32,95,32,95,95,32,32,32,95,32,95,95,32,32,32,95,32,32,32,95 using ASCII) | |
union | |
select char(124,32,32,95,95,32,32,124,32,47,32,95,96,32,124,124,32,39,95,32,32,124,32,39,95,32,32,124,32,124,32,124,32,124 using ASCII) | |
union | |
select char(124,32,124,32,32,124,32,124,124,32,40,95,124,32,124,124,32,124,95,41,32,124,124,32,124,95,41,32,124,124,32,124,95,124,32,124 using ASCII) | |
union |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function calcAvg( numeric sold=0, numeric sales=0 ){ | |
if( sales == 0 ){ | |
return 0; | |
} | |
else{ | |
return sold/sales; | |
} | |
} | |
data = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public list(){ | |
Layout.executeQuery('from Layout where user is null') | |
} | |
public list( User user ){ | |
Layout.executeQuery('from Layout where user = :user or user is null', [ user: user ]) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.golfleague | |
class User { | |
String id | |
String firstName | |
String lastName | |
String username | |
String password | |
String emailAddress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
property name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function init |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<option value="#regions.id#">#regions.name#</option> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
label{width:100px;float:left}; | |
p{clear:both;} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
searchUsers = function() { | |
var name = $("#name").val(); | |
var region = $("#region").val(); | |
var visn = $("#visn").val(); | |
var facility = $("#facility").val(); | |
var test = name + region + visn + facility; | |
if (test.toString().length > 2) { | |
$.ajaxSetup({ | |
url: 'RemotingService.cfc', | |
type: 'POST', |