Advertisement

05.11.2008 at 07:10PM PDT, ID: 23393474
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

CFFORM will not validate

Tags: Cold Fusion 8
Hi. I want to set up client side validation for a CFFORM, on this page:

http://ebwebwork.com/ncpieupdate.cfm

I believe I have done everything correctly to set up validation. I read up on this topic in the Forta book on CF8. (Vol 1, pp. 290 - 291.)

However my CFFORM does not validate. I'm following the Forta code very closely. The fields Title, Author, and Price should validate.

Can someone help me understand what I am doing wrong? Thanks very much as always.

Eric
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
<!DOCTYPE html public "-//W3C//DTD HTML 4.0 Final//EN">
<HTML>
<HEAD>
 
 
<link rel="STYLESHEET" type="text/css" href="ncpieupdate.css" />
 
 
</HEAD>
 
 
<div id="wrapper0">
 
<!--- If the user is submitting the Form... --->
<cfif isDefined("FORM.subject")>
 
  <!--- We do not want ColdFusion to suppress whitespace here --->
  <cfprocessingdirective suppressWhitespace="No">
 
<!--- Send the mail message with content based on form input --->
 
<cfmail
 subject="#FORM.subject#"
 from="#FORM.fromAddress#"
 to="#FORM.toAddress#"
 server = "xxxx"
username = "xxxx"
password = "xxxx"
SpoolEnable="No">
Resource 1 Title: #FORM.ResourceTitle1#
Resource 1 Author: #FORM.ResourceAuthor1#
Resource 1 Price: #FORM.ResourcePrice1#
Resource 1 Description: #FORM.ResourceDescription1#
Resource 1 Categories:
<cfloop index="Categories"
   list="#FORM.Category1#"> 
<cfoutput>#Categories#</cfoutput>
</cfloop>
 
Resource 2 Title: #FORM.ResourceTitle2#
Resource 2 Author: #FORM.ResourceAuthor2#
Resource 2 Price: #FORM.ResourcePrice2#
Resource 2 Description: #FORM.ResourceDescription2#
Resource 2 Categories:
<cfloop index="Categories"
   list="#FORM.Category2#"> 
<cfoutput>#Categories#</cfoutput>
</cfloop>
 
Resource 3 Title: #FORM.ResourceTitle3#
Resource 3 Author: #FORM.ResourceAuthor3#
Resource 3 Price: #FORM.ResourcePrice3#
Resource 3 Description: #FORM.ResourceDescription3#
Resource 3 Categories:
<cfloop index="Categories"
   list="#FORM.Category3#"> 
<cfoutput>#Categories#</cfoutput>
</cfloop>
 
Resource 4 Title: #FORM.ResourceTitle4#
Resource 4 Author: #FORM.ResourceAuthor4#
Resource 4 Price: #FORM.ResourcePrice4#
Resource 4 Description: #FORM.ResourceDescription4#
Resource 4 Categories:
<cfloop index="Categories"
   list="#FORM.Category4#"> 
<cfoutput>#Categories#</cfoutput>
</cfloop>
 
Resource 5 Title: #FORM.ResourceTitle5#
Resource 5 Author: #FORM.ResourceAuthor5#
Resource 5 Price: #FORM.ResourcePrice5#
Resource 5 Description: #FORM.ResourceDescription5#
Resource 5 Categories:
<cfloop index="Categories"
   list="#FORM.Category5#"> 
<cfoutput>#Categories#</cfoutput>
</cfloop>
 
 
</cfmail>
 
  </cfprocessingdirective>
 
 <!--- Display "success" message to user --->
 
  <h1>Thank you.</h1>
 
 <h2>Your information has been sent to NCPIE.<br />We will update our database with your information within 48 hours.</h2>
  <p>If you have questions or concerns about this update process, please contact Sue Ferguson at <a href="mailto:ferguson@ncpie.org">ferguson@ncpie.org</a>.</p>
 
  <p>Here is the information you sent:</p>
  
 
<cfoutput>
<p><CFIF ResourceTitle1 IS NOT ""><strong>Resource 1 Title:</strong>  #FORM.ResourceTitle1#</CFIF><br />
<CFIF ResourceAuthor1 IS NOT ""><strong>Resource 1 Author:</strong> #FORM.ResourceAuthor1#</CFIF><br />
<CFIF ResourcePrice1 IS NOT ""><strong>Resource 1 Price:</strong> #FORM.ResourcePrice1#</CFIF><br />
<CFIF ResourceDescription1 IS NOT ""><strong>Resource 1 Description:</strong> #FORM.ResourceDescription1#</CFIF></p>
<p><strong>Categories:</strong></p>
<cfloop index="Categories"
   list="#FORM.Category1#"> 
<cfoutput>#Categories#</cfoutput><br />
</cfloop>
 
<p><CFIF ResourceTitle2 IS NOT ""><strong>Resource 2 Title:</strong>  #FORM.ResourceTitle2#</CFIF><br />
<CFIF ResourceAuthor2 IS NOT ""><strong>Resource 2 Author:</strong> #FORM.ResourceAuthor2#</CFIF><br />
<CFIF ResourcePrice2 IS NOT ""><strong>Resource 2 Price:</strong> #FORM.ResourcePrice2#</CFIF><br />
<CFIF ResourceDescription2 IS NOT ""><strong>Resource 2 Description:</strong> #FORM.ResourceDescription2#</CFIF></p>
<p><strong>Categories:</strong></p>
<cfloop index="Categories"
   list="#FORM.Category2#"> 
<cfoutput>#Categories#</cfoutput><br />
</cfloop>
 
<p><CFIF ResourceTitle3 IS NOT ""><strong>Resource 3 Title:</strong>  #FORM.ResourceTitle3#</CFIF><br />
<CFIF ResourceAuthor3 IS NOT ""><strong>Resource 3 Author:</strong> #FORM.ResourceAuthor3#</CFIF><br />
<CFIF ResourcePrice3 IS NOT ""><strong>Resource 3 Price:</strong> #FORM.ResourcePrice3#</CFIF><br />
<CFIF ResourceDescription3 IS NOT ""><strong>Resource 3 Description:</strong> #FORM.ResourceDescription3#</CFIF></p>
<p><strong>Categories:</strong></p>
<cfloop index="Categories"
   list="#FORM.Category3#"> 
<cfoutput>#Categories#</cfoutput><br />
</cfloop>
 
<p><CFIF ResourceTitle4 IS NOT ""><strong>Resource 4 Title:</strong>  #FORM.ResourceTitle4#</CFIF><br />
<CFIF ResourceAuthor4 IS NOT ""><strong>Resource 4 Author:</strong> #FORM.ResourceAuthor4#</CFIF><br />
<CFIF ResourcePrice4 IS NOT ""><strong>Resource 4 Price:</strong> #FORM.ResourcePrice4#</CFIF><br />
<CFIF ResourceDescription4 IS NOT ""><strong>Resource 4 Description:</strong> #FORM.ResourceDescription4#</CFIF></p>
<p><strong>Categories:</strong></p>
<cfloop index="Categories"
   list="#FORM.Category4#"> 
<cfoutput>#Categories#</cfoutput><br />
</cfloop>
 
<p><CFIF ResourceTitle5 IS NOT ""><strong>Resource 5 Title:</strong>  #FORM.ResourceTitle5#</CFIF><br />
<CFIF ResourceAuthor5 IS NOT ""><strong>Resource 5 Author:</strong> #FORM.ResourceAuthor5#</CFIF><br />
<CFIF ResourcePrice5 IS NOT ""><strong>Resource 5 Price:</strong> #FORM.ResourcePrice5#</CFIF><br />
<CFIF ResourceDescription5 IS NOT ""><strong>Resource 5 Description:</strong> #FORM.ResourceDescription5#</CFIF></p>
<p><strong>Categories:</strong></p>
<cfloop index="Categories"
   list="#FORM.Category5#"> 
<cfoutput>#Categories#</cfoutput><br />
</cfloop>
 
 
 
</cfoutput>
  
 
<!--- Otherwise, display the form to user... ---> 
<cfelse>
 <!--- form for recipient and message --->
 
 
 <h1>Update Page for NCPIE Organizations</h1>
 
<ul>
<li>Organizations who are members of NCPIE may use the form, below, to send to NCPIE updated contact information and information about publications and other resources.</li>
 
<li>This information will be entered in the NCPIE database at ncpie.org.</li>
 
<li>This information <em>will supercede</em> your current information in the NCPIE database.</li>
 
<li class="red">Be careful of typographical errors. The text you enter here will appear unchanged on the NCPIE web site.</li>
 
<li>If you have questions, we are here to assist you. Please contact the <a href="mailto:eric@ebwebwork.com">NCPIE web development team</a>. Thank you!</li>
 
</ul>		
 
 
 
 <cfform scriptSrc="../../cfform.js" action="#cgi.script_name#" method="post"> 
  
 
  
  <cfinput type="hidden" name="toAddress" value="eric@ebwebwork.com" />
 
  <cfinput type="hidden" name="fromAddress" value="eric@ebwebwork.com" />
  
  <cfinput type="hidden" name="subject" value="NCPIE Member Update" />
 
  
  
  
  
  
  
  
  
  
<h2>Please enter information about your organization's Resources or Publications (limit 5)</h2>
 
<p><strong>Resource 1:</strong></p>
 
 
<div class="updateForm">
 
<p><strong>Title:</strong><br />
<cfinput type="text" name="ResourceTitle1" size="40" required="yes" message="Please enter the Title for Resource 1." validateAt="onSubmit" /></p>
 
<p><strong>Author(s):</strong><br />
<cfinput type="text" name="ResourceAuthor1" size="40" required="yes" message="Please enter the Author Name for Resource 1." validateAt="onSubmit" /></p>
 
<p><strong>Price:</strong><br />
<cfinput type="text" name="ResourcePrice1" size="40" required="yes" message="Please enter a Price for Resource 1." validateAt="onSubmit" /></p>
 
<p><strong>Description:</strong> (1 paragraph) <em>(Remember, you can copy existing text and paste it here. Watch for typos!)</em><br />
<textarea cols="70" rows="10" name="ResourceDescription1"></textarea></p>
 
 
<p class="clear">&nbsp;</p>
 
 
<p class="float-left width400px">Please choose one or more categories for this resource. To choose more than one, depress the CTRL key on your keyboard, and click on the desired categories. Please choose no more than <strong>five:</strong></p>
 
 
<p class="float-right width400px">
<select name="Category1" id="Category1" onChange="validateListBox(5);" multiple size="5">
<option value="SelectCategory1" SELECTED>Choose Category</option>
<option value="Administrators">Administrators</option>
<option value="AfterSchoolPrograms">After School Programs</option>
<option value="Assessment">Assessment</option>
<option value="AtRiskStudents">At Risk Students</option>
<option value="BehaviorManagement">Behavior Management</option>
<option value="ChildCare">Child Care</option>
<option value="CommunityEducation">Community Education</option>
<option value="CommunityPartnerships">Community Partnerships</option>
<option value="ComprehensiveSchoolReform">Comprehensive School Reform</option>
<option value="Disabilities">Disabilities</option>
<option value="Discipline">Discipline</option>
<option value="Diversity">Diversity</option>
<option value="DropoutPrevention">Dropout Prevention</option>
<option value="EarlyChildhoodEducation">Early Childhood Education</option>
<option value="ElementaryEducation">Elementary Education</option>
<option value="EnglishLanguageLearners">English Language Learners</option>
<option value="FamilySchoolPartnerships">Family / School Partnerships</option>
<option value="FamilySupport">Family Support</option>
<option value="GrantWriting">Grant Writing</option>
<option value="HighSchoolEducation">High School Education</option>
<option value="HigherEducation">Higher Education</option>
<option value="InformationReferral">Information and Referral</option>
<option value="InformationStudents">Information for Students</option>
<option value="LanguageAlternatives">Language Alternatives</option>
<option value="Legislation">Legislation</option>
<option value="Literacy">Literacy</option>
<option value="MiddleSchoolEducation">Middle School Education</option>
<option value="Miscellaneous">Miscellaneous</option>
<option value="Multimedia">Multimedia</option>
<option value="ParentEducation">Parent Education</option>
<option value="ParentLeadership">Parent Leadership</option>
<option value="ParentsFamilies">Parents and Families</option>
<option value="ProfessionalDevelopment">Professional Development</option>
<option value="PromisingPracticesEducation">Promising Practices for Education</option>
<option value="PromisingPracticesParentInvolvement">Promising Practices for Parent Involvement</option>
<option value="PublicPolicy">Public Policy</option>
<option value="Research">Research</option>
<option value="SchoolImprovement">School Improvement</option>
<option value="ServiceLearning">Service Learning</option>
<option value="StudentAchievement">Student Achievement</option>
<option value="Teachers">Teachers</option>
<option value="TitleI">Title I</option>
<option value="Trauma">Trauma</option>
<option value="TutorsMentors">Tutors / Mentors</option>
</select></p>
 
 
 
 
<p class="clear-both">&nbsp;</p>
<!-- end updateForm -->
</div>
 
 
<p><strong>Resource 2:</strong></p>
<div class="updateForm">
 
<p><strong>Title:</strong><br />
<cfinput type="text" name="ResourceTitle2" size="40" required="yes" message="Please enter the Title for Resource 2." validateAt="onSubmit" /></p>
 
<p><strong>Author(s):</strong><br />
<cfinput type="text" name="ResourceAuthor2" size="40" required="yes" message="Please enter the Author Name for Resource 2." validateAt="onSubmit" /></p>
 
<p><strong>Price:</strong><br />
<cfinput type="text" name="ResourcePrice2" size="40" required="yes" message="Please enter a Price for Resource 2." validateAt="onSubmit" /></p>
 
<p><strong>Description:</strong> (1 paragraph) <em>(Remember, you can copy existing text and paste it here. Watch for typos!)</em><br />
<textarea cols="70" rows="10" name="ResourceDescription2"></textarea></p>
 
 
<p class="clear">&nbsp;</p>
 
 
<p class="float-left width400px">Please choose one or more categories for this resource. To choose more than one, depress the CTRL key on your keyboard, and click on the desired categories. Please choose no more than <strong>five:</strong></p>
 
 
<p class="float-right width400px">
<select name="Category2" id="Category2" onChange="validateListBox(5);" multiple size="5">
<option value="SelectCategory2" SELECTED>Choose Category</option>
<option value="Administrators">Administrators</option>
<option value="AfterSchoolPrograms">After School Programs</option>
<option value="Assessment">Assessment</option>
<option value="AtRiskStudents">At Risk Students</option>
<option value="BehaviorManagement">Behavior Management</option>
<option value="ChildCare">Child Care</option>
<option value="CommunityEducation">Community Education</option>
<option value="CommunityPartnerships">Community Partnerships</option>
<option value="ComprehensiveSchoolReform">Comprehensive School Reform</option>
<option value="Disabilities">Disabilities</option>
<option value="Discipline">Discipline</option>
<option value="Diversity">Diversity</option>
<option value="DropoutPrevention">Dropout Prevention</option>
<option value="EarlyChildhoodEducation">Early Childhood Education</option>
<option value="ElementaryEducation">Elementary Education</option>
<option value="EnglishLanguageLearners">English Language Learners</option>
<option value="FamilySchoolPartnerships">Family / School Partnerships</option>
<option value="FamilySupport">Family Support</option>
<option value="GrantWriting">Grant Writing</option>
<option value="HighSchoolEducation">High School Education</option>
<option value="HigherEducation">Higher Education</option>
<option value="InformationReferral">Information and Referral</option>
<option value="InformationStudents">Information for Students</option>
<option value="LanguageAlternatives">Language Alternatives</option>
<option value="Legislation">Legislation</option>
<option value="Literacy">Literacy</option>
<option value="MiddleSchoolEducation">Middle School Education</option>
<option value="Miscellaneous">Miscellaneous</option>
<option value="Multimedia">Multimedia</option>
<option value="ParentEducation">Parent Education</option>
<option value="ParentLeadership">Parent Leadership</option>
<option value="ParentsFamilies">Parents and Families</option>
<option value="ProfessionalDevelopment">Professional Development</option>
<option value="PromisingPracticesEducation">Promising Practices for Education</option>
<option value="PromisingPracticesParentInvolvement">Promising Practices for Parent Involvement</option>
<option value="PublicPolicy">Public Policy</option>
<option value="Research">Research</option>
<option value="SchoolImprovement">School Improvement</option>
<option value="ServiceLearning">Service Learning</option>
<option value="StudentAchievement">Student Achievement</option>
<option value="Teachers">Teachers</option>
<option value="TitleI">Title I</option>
<option value="Trauma">Trauma</option>
<option value="TutorsMentors">Tutors / Mentors</option>
</select></p>
 
 
 
 
<p class="clear-both">&nbsp;</p>
<!-- end updateForm -->
</div>
 
 
<p><strong>Resource 3:</strong></p>
<div class="updateForm">
 
<p><strong>Title:</strong><br />
<cfinput type="text" name="ResourceTitle3" size="40" required="yes" message="Please enter the Title for Resource 3." validateAt="onSubmit" /></p>
 
<p><strong>Author(s):</strong><br />
<cfinput type="text" name="ResourceAuthor3" size="40" required="yes" message="Please enter the Author Name for Resource 3." validateAt="onSubmit" /></p>
 
<p><strong>Price:</strong><br />
<cfinput type="text" name="ResourcePrice3" size="40" required="yes" message="Please enter a Price for Resource 3." validateAt="onSubmit" /></p>
 
<p><strong>Description:</strong> (1 paragraph) <em>(Remember, you can copy existing text and paste it here. Watch for typos!)</em><br />
<textarea cols="70" rows="10" name="ResourceDescription3"></textarea></p>
 
 
<p class="clear">&nbsp;</p>
 
 
<p class="float-left width400px">Please choose one or more categories for this resource. To choose more than one, depress the CTRL key on your keyboard, and click on the desired categories. Please choose no more than <strong>five:</strong></p>
 
 
<p class="float-right width400px">
<select name="Category3" id="Category3" onChange="validateListBox(5);" multiple size="5">
<option value="SelectCategory3" SELECTED>Choose Category</option>
<option value="Administrators">Administrators</option>
<option value="AfterSchoolPrograms">After School Programs</option>
<option value="Assessment">Assessment</option>
<option value="AtRiskStudents">At Risk Students</option>
<option value="BehaviorManagement">Behavior Management</option>
<option value="ChildCare">Child Care</option>
<option value="CommunityEducation">Community Education</option>
<option value="CommunityPartnerships">Community Partnerships</option>
<option value="ComprehensiveSchoolReform">Comprehensive School Reform</option>
<option value="Disabilities">Disabilities</option>
<option value="Discipline">Discipline</option>
<option value="Diversity">Diversity</option>
<option value="DropoutPrevention">Dropout Prevention</option>
<option value="EarlyChildhoodEducation">Early Childhood Education</option>
<option value="ElementaryEducation">Elementary Education</option>
<option value="EnglishLanguageLearners">English Language Learners</option>
<option value="FamilySchoolPartnerships">Family / School Partnerships</option>
<option value="FamilySupport">Family Support</option>
<option value="GrantWriting">Grant Writing</option>
<option value="HighSchoolEducation">High School Education</option>
<option value="HigherEducation">Higher Education</option>
<option value="InformationReferral">Information and Referral</option>
<option value="InformationStudents">Information for Students</option>
<option value="LanguageAlternatives">Language Alternatives</option>
<option value="Legislation">Legislation</option>
<option value="Literacy">Literacy</option>
<option value="MiddleSchoolEducation">Middle School Education</option>
<option value="Miscellaneous">Miscellaneous</option>
<option value="Multimedia">Multimedia</option>
<option value="ParentEducation">Parent Education</option>
<option value="ParentLeadership">Parent Leadership</option>
<option value="ParentsFamilies">Parents and Families</option>
<option value="ProfessionalDevelopment">Professional Development</option>
<option value="PromisingPracticesEducation">Promising Practices for Education</option>
<option value="PromisingPracticesParentInvolvement">Promising Practices for Parent Involvement</option>
<option value="PublicPolicy">Public Policy</option>
<option value="Research">Research</option>
<option value="SchoolImprovement">School Improvement</option>
<option value="ServiceLearning">Service Learning</option>
<option value="StudentAchievement">Student Achievement</option>
<option value="Teachers">Teachers</option>
<option value="TitleI">Title I</option>
<option value="Trauma">Trauma</option>
<option value="TutorsMentors">Tutors / Mentors</option>
</select></p>
 
 
 
 
<p class="clear-both">&nbsp;</p>
<!-- end updateForm -->
</div>
 
 
 
<p><strong>Resource 4:</strong></p>
<div class="updateForm">
 
<p><strong>Title:</strong><br />
<cfinput type="text" name="ResourceTitle4" size="40" required="yes" message="Please enter the Title for Resource 4." validateAt="onSubmit" /></p>
 
<p><strong>Author(s):</strong><br />
<cfinput type="text" name="ResourceAuthor4" size="40" required="yes" message="Please enter the Author Name for Resource 4." validateAt="onSubmit" /></p>
 
<p><strong>Price:</strong><br />
<cfinput type="text" name="ResourcePrice4" size="40" required="yes" message="Please enter a Price for Resource 4." validateAt="onSubmit" /></p>
 
<p><strong>Description:</strong> (1 paragraph) <em>(Remember, you can copy existing text and paste it here. Watch for typos!)</em><br />
<textarea cols="70" rows="10" name="ResourceDescription4"></textarea></p>
 
 
<p class="clear">&nbsp;</p>
 
 
<p class="float-left width400px">Please choose one or more categories for this resource. To choose more than one, depress the CTRL key on your keyboard, and click on the desired categories. Please choose no more than <strong>five:</strong></p>
 
 
<p class="float-right width400px">
<select name="Category4" id="Category4" onChange="validateListBox(5);" multiple size="5">
<option value="SelectCategory4" SELECTED>Choose Category</option>
<option value="Administrators">Administrators</option>
<option value="AfterSchoolPrograms">After School Programs</option>
<option value="Assessment">Assessment</option>
<option value="AtRiskStudents">At Risk Students</option>
<option value="BehaviorManagement">Behavior Management</option>
<option value="ChildCare">Child Care</option>
<option value="CommunityEducation">Community Education</option>
<option value="CommunityPartnerships">Community Partnerships</option>
<option value="ComprehensiveSchoolReform">Comprehensive School Reform</option>
<option value="Disabilities">Disabilities</option>
<option value="Discipline">Discipline</option>
<option value="Diversity">Diversity</option>
<option value="DropoutPrevention">Dropout Prevention</option>
<option value="EarlyChildhoodEducation">Early Childhood Education</option>
<option value="ElementaryEducation">Elementary Education</option>
<option value="EnglishLanguageLearners">English Language Learners</option>
<option value="FamilySchoolPartnerships">Family / School Partnerships</option>
<option value="FamilySupport">Family Support</option>
<option value="GrantWriting">Grant Writing</option>
<option value="HighSchoolEducation">High School Education</option>
<option value="HigherEducation">Higher Education</option>
<option value="InformationReferral">Information and Referral</option>
<option value="InformationStudents">Information for Students</option>
<option value="LanguageAlternatives">Language Alternatives</option>
<option value="Legislation">Legislation</option>
<option value="Literacy">Literacy</option>
<option value="MiddleSchoolEducation">Middle School Education</option>
<option value="Miscellaneous">Miscellaneous</option>
<option value="Multimedia">Multimedia</option>
<option value="ParentEducation">Parent Education</option>
<option value="ParentLeadership">Parent Leadership</option>
<option value="ParentsFamilies">Parents and Families</option>
<option value="ProfessionalDevelopment">Professional Development</option>
<option value="PromisingPracticesEducation">Promising Practices for Education</option>
<option value="PromisingPracticesParentInvolvement">Promising Practices for Parent Involvement</option>
<option value="PublicPolicy">Public Policy</option>
<option value="Research">Research</option>
<option value="SchoolImprovement">School Improvement</option>
<option value="ServiceLearning">Service Learning</option>
<option value="StudentAchievement">Student Achievement</option>
<option value="Teachers">Teachers</option>
<option value="TitleI">Title I</option>
<option value="Trauma">Trauma</option>
<option value="TutorsMentors">Tutors / Mentors</option>
</select></p>
 
 
 
 
<p class="clear-both">&nbsp;</p>
<!-- end updateForm -->
</div>
 
 
<p><strong>Resource 5:</strong></p>
<div class="updateForm">
 
<p><strong>Title:</strong><br />
<cfinput type="text" name="ResourceTitle5" size="40" required="yes" message="Please enter the Title for Resource 5." validateAt="onSubmit" /></p>
 
<p><strong>Author(s):</strong><br />
<cfinput type="text" name="ResourceAuthor5" size="40" required="yes" message="Please enter the Author Name for Resource 5." validateAt="onSubmit" /></p>
 
<p><strong>Price:</strong><br />
<cfinput type="text" name="ResourcePrice5" size="40" required="yes" message="Please enter a Price for Resource 5." validateAt="onSubmit" /></p>
 
<p><strong>Description:</strong> (1 paragraph) <em>(Remember, you can copy existing text and paste it here. Watch for typos!)</em><br />
<textarea cols="70" rows="10" name="ResourceDescription5"></textarea></p>
 
 
<p class="clear">&nbsp;</p>
 
 
<p class="float-left width400px">Please choose one or more categories for this resource. To choose more than one, depress the CTRL key on your keyboard, and click on the desired categories. Please choose no more than <strong>five:</strong></p>
 
 
<p class="float-right width400px">
<select name="Category5" id="Category5" onChange="validateListBox(5);" multiple size="5">
<option value="SelectCategory5" SELECTED>Choose Category</option>
<option value="Administrators">Administrators</option>
<option value="AfterSchoolPrograms">After School Programs</option>
<option value="Assessment">Assessment</option>
<option value="AtRiskStudents">At Risk Students</option>
<option value="BehaviorManagement">Behavior Management</option>
<option value="ChildCare">Child Care</option>
<option value="CommunityEducation">Community Education</option>
<option value="CommunityPartnerships">Community Partnerships</option>
<option value="ComprehensiveSchoolReform">Comprehensive School Reform</option>
<option value="Disabilities">Disabilities</option>
<option value="Discipline">Discipline</option>
<option value="Diversity">Diversity</option>
<option value="DropoutPrevention">Dropout Prevention</option>
<option value="EarlyChildhoodEducation">Early Childhood Education</option>
<option value="ElementaryEducation">Elementary Education</option>
<option value="EnglishLanguageLearners">English Language Learners</option>
<option value="FamilySchoolPartnerships">Family / School Partnerships</option>
<option value="FamilySupport">Family Support</option>
<option value="GrantWriting">Grant Writing</option>
<option value="HighSchoolEducation">High School Education</option>
<option value="HigherEducation">Higher Education</option>
<option value="InformationReferral">Information and Referral</option>
<option value="InformationStudents">Information for Students</option>
<option value="LanguageAlternatives">Language Alternatives</option>
<option value="Legislation">Legislation</option>
<option value="Literacy">Literacy</option>
<option value="MiddleSchoolEducation">Middle School Education</option>
<option value="Miscellaneous">Miscellaneous</option>
<option value="Multimedia">Multimedia</option>
<option value="ParentEducation">Parent Education</option>
<option value="ParentLeadership">Parent Leadership</option>
<option value="ParentsFamilies">Parents and Families</option>
<option value="ProfessionalDevelopment">Professional Development</option>
<option value="PromisingPracticesEducation">Promising Practices for Education</option>
<option value="PromisingPracticesParentInvolvement">Promising Practices for Parent Involvement</option>
<option value="PublicPolicy">Public Policy</option>
<option value="Research">Research</option>
<option value="SchoolImprovement">School Improvement</option>
<option value="ServiceLearning">Service Learning</option>
<option value="StudentAchievement">Student Achievement</option>
<option value="Teachers">Teachers</option>
<option value="TitleI">Title I</option>
<option value="Trauma">Trauma</option>
<option value="TutorsMentors">Tutors / Mentors</option>
</select></p>
 
 
 
 
<p class="clear-both">&nbsp;</p>
<!-- end updateForm -->
</div>
 
 
 
 
 
 
<p class="align-center"><cfinput type="submit" name="submit" value="Send to NCPIE" /></p>
 
</cfform>
 
</cfif> 
 
 
 
 
<!-- end wrapper0 -->
</div>
 
<div class="align-center">
 
<p>Copyright &#169; 2008 NCPIE</p>
 
<p><a href="http://ebwebwork.com">ebwebwork.com</a></p>
 
</div>
 
 
</BODY>
</html>
Start your free trial to view this solution
Question Stats
Zone: Web Development
Question Asked By: EricBourland
Solution Provided By: gdemaria
Participating Experts: 1
Solution Grade: A
Views: 0
Translate:
Loading Advertisement...
05.13.2008 at 05:55AM PDT, ID: 21554514

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.13.2008 at 12:37PM PDT, ID: 21558548

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.13.2008 at 12:57PM PDT, ID: 21558699

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.13.2008 at 02:41PM PDT, ID: 21559555

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.13.2008 at 07:23PM PDT, ID: 21560795

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.15.2008 at 09:31AM PDT, ID: 21575477

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.15.2008 at 09:49AM PDT, ID: 21575692

Rank: Sage

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.15.2008 at 10:08AM PDT, ID: 21575908

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.15.2008 at 10:28AM PDT, ID: 21576143

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29 / EE_QW_2_20070628