Re: working a web site from Rev

2005-08-19 Thread Dave Cragg
On 18 Aug 2005, at 20:24, Jon wrote: Dave: Excellent help. Question: how would one indicate that a check box field is checked (or not)? Thanks! Jon I've never done this, but this is what I have read: -- If the checkbox is unchecked, don't send anything. -- If the checkbox is

Re: working a web site from Rev

2005-08-18 Thread Jon
Dave: Excellent help. Question: how would one indicate that a check box field is checked (or not)? Thanks! Jon Dave Cragg wrote: On 16 Aug 2005, at 22:29, Jon wrote: I want to write a Rev program to make sure that a web site I've written is still functioning correctly, perhaps once an

working a web site from Rev

2005-08-16 Thread Jon
I want to write a Rev program to make sure that a web site I've written is still functioning correctly, perhaps once an hour, 24/7. The manipulations for a person are pretty simple: 1) go to a fixed URL 2) click a button 3) go to the bottom of the page 4) check a check box 5) click a button

Re: working a web site from Rev

2005-08-16 Thread Ken Ray
On 8/16/05 4:29 PM, Jon [EMAIL PROTECTED] wrote: I want to write a Rev program to make sure that a web site I've written is still functioning correctly, perhaps once an hour, 24/7. The manipulations for a person are pretty simple: 1) go to a fixed URL 2) click a button 3) go to the

Re: working a web site from Rev

2005-08-16 Thread Dave Cragg
On 16 Aug 2005, at 22:29, Jon wrote: I want to write a Rev program to make sure that a web site I've written is still functioning correctly, perhaps once an hour, 24/7. The manipulations for a person are pretty simple: 1) go to a fixed URL 2) click a button 3) go to the bottom of the

Re: working a web site from Rev

2005-08-16 Thread Ken Ray
On 8/16/05 4:48 PM, Ken Ray [EMAIL PROTECTED] wrote: put urlEncode(Test) into tName put urlEncode(test@test.com) into tEmail get url(http://www.123.com/cgi-bin/testcgi?; tNametEmail) Whoops! That should be: get url(http://www.123.com/cgi-bin/testcgi?name=; tName email= tEmail)