Looking to hire ASP coder for small project

madmatt

Awesome is as awesome does.
Political Access
Joined
5 Apr 2002
Messages
13,314
I am looking to hire an ASP coder for a small project. I don't have the time, nor the desire to do the work.

Details:
ASP contact form with error checking. All code including form, error checking, mail function (objCDOMail) with confirmation should be contained in one ASP file.

Error checking should turn form labels red when left null.

Phone number should be in 3-3-4 format with automatic advance.

It should be easy to add additional fields if needed. Additionally, it should be easy to move this code into our current format.

Code becomes property of my company following completion of project.

Fee is negotiable and will be paid via PayPal.

Serious posts only. Thank you.
 
nice post - I am seriously thinking how do I make more hours in my day to apply! (Sadly too busy with other commitments)
 
Here is a snippet of code I've used previously to flow from one form element to the next, I believe it requires Prototype but it can probably be adapted. I'd advocate using some unobtrusive JS to add the functions as an event handler for the keyup and keydown with _next and _prev respectively. You'll need to set the maxlength on the form inputs to auto advance. Hope this helps anyone who takes this on.

Code:
function form_flow_to_next(el, event) {
  if ((el.value.length == el.maxLength) && (event.keyCode > 46)) {
    if (next = $(el.id.succ()))
      next.focus(); 
  }
}

function form_flow_to_prev(el, event) {
  if ((el.value.length == 0) && (event.keyCode == 8)) {
    if (prev = $(el.id.prev()))
          prev.focus();
  }
}
 
Hah! it is going to become open source hosted on OSNN forums at this rate!
 

Members online

No members online now.

Latest profile posts

Also Hi EP and people. I found this place again while looking through a oooollllllldddd backup. I have filled over 10TB and was looking at my collection of antiques. Any bids on the 500Mhz Win 95 fix?
Any of the SP crew still out there?
Xie wrote on Electronic Punk's profile.
Impressed you have kept this alive this long EP! So many sites have come and gone. :(

Just did some crude math and I apparently joined almost 18yrs ago, how is that possible???
hello peeps... is been some time since i last came here.
Electronic Punk wrote on Sazar's profile.
Rest in peace my friend, been trying to find you and finally did in the worst way imaginable.

Forum statistics

Threads
62,015
Messages
673,494
Members
5,621
Latest member
naeemsafi
Back