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
[ | |
'{{repeat(15, 45)}}', | |
{ | |
NoticeNumber: '{{guid()}}', | |
Client: '{{integer(1,1000)}}', | |
LossDate: '{{date(new Date(2014, 0, 1), new Date(), "MM/dd/YYYY")}}', | |
Coverage: '10', | |
Claimant: '{{firstName()}}' + ' '+ '{{surname()}}', | |
ReceivedDate: '{{date(new Date(2014, 0, 1), new Date(), "MM/dd/YYYY")}}', | |
Location: '{{city()}}', |
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
User-Agent: Fiddler | |
Content-Type : application/x-www-form-urlencoded |
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
//eReg uses Prototype | |
//eReg loads the external JS file at the top of the page so the scripts need to wait for the DOM to be loaded before running | |
document.observe("dom:loaded", function() { | |
//prototype observere the two day session input buttons and fire on clicks | |
$('session_9984406_6071522_2').observe('click', function(event) { |
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
// String to DateTime | |
String MyString; | |
MyString = "1999-09-01 21:34 PM"; | |
//MyString = "1999-09-01 21:34 p.m."; //Depends on your regional settings | |
DateTime MyDateTime; | |
MyDateTime = new DateTime(); | |
MyDateTime = DateTime.ParseExact(MyString, "yyyy-MM-dd HH:mm tt", null); |
NewerOlder