[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

07/30/2008 at 12:56PM PDT, ID: 23608784
[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!

6.6

menu bar not rendering right

Asked by knowlton in Programming for ASP.NET

The menu bar in question is part of the master page.  Other pages that use this master page render the menu bar correctly.  It is just my new page that is not rendering it correctly.

See screenshot.

See code snippet of the page aspx as well as the HTML source (minus viewstate) that is getting rendered   vs  pages that work right.
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:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
1393:
1394:
1395:
1396:
1397:
1398:
1399:
1400:
1401:
1402:
1403:
1404:
1405:
1406:
1407:
1408:
1409:
1410:
1411:
1412:
1413:
1414:
1415:
1416:
1417:
1418:
1419:
1420:
1421:
1422:
1423:
1424:
1425:
1426:
1427:
1428:
1429:
1430:
1431:
1432:
1433:
1434:
1435:
1436:
1437:
1438:
1439:
1440:
1441:
1442:
1443:
1444:
1445:
1446:
1447:
1448:
1449:
1450:
1451:
1452:
1453:
1454:
1455:
1456:
1457:
1458:
1459:
1460:
1461:
1462:
1463:
1464:
1465:
1466:
1467:
1468:
1469:
1470:
1471:
1472:
1473:
1474:
PAGE THAT DOES NOT WORK (ASPX):
 
<%@ Page Language="C#" MasterPageFile="~/MasterPages/CMSNavigation.master" AutoEventWireup="true"
	CodeFile="DirectoryManagement.aspx.cs" Inherits="Tools_SEO_DirectoryManagement"
	Title="Untitled Page" %>
 
<%@ Register Src="../../UserControls/SEO/DirManCollection.ascx" TagName="DirManCollection"
	TagPrefix="uc1" %>
<%@ Register Src="../../UserControls/SEO/CaptchaRepeater.ascx" TagName="CaptchaRepeater"
	TagPrefix="uc2" %>
<%@ Reference Control="~/UserControls/SEO/CaptchaImageDisplay.ascx" %>
<%@ Register Src="../../UserControls/SEO/DirectoryManagementDropDown.ascx" TagName="DirectoryManagementDropDown"
	TagPrefix="uc3" %>
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" runat="Server">
 
<script type="text/javascript">
        function RadioChecked(current)
        {               
           for(i = 0; i < document.forms[0].elements.length; i++)
           {
              elm = document.forms[0].elements[i];
                          
              if (elm.type == 'radio')      
              {           
                    if(elm != current)
                    {
                        elm.checked = false;                                                              
                    }
              }
           }           
           
						__doPostBack(current.value,'CAPTCHARADIO');              
        }
    
        function checkSelectValues(element, str) 
        {
            ss = document.getElementsByTagName("SELECT");
	
	        for(x=0;x<ss.length;x++)	         
	        {	        	         
                
                if(ss[x].id.indexOf(str) != -1) 
                {        
	        
		            if ((ss[x].id != element.id) && (ss[x].value == element.value)) 
		            {
									ss[x].value = "0";		             
		            } 
		            else 
		            {
		            }
		        }
	        }
        }            
	</script>
 
	<table>
		<tr>
			<td>
				<asp:Label ID="LabelTitle" runat="server" Text="Link Builder" Font-Bold="True" Font-Size="Larger"></asp:Label>
				<br />
				<br />
			</td>
		</tr>
		<tr>
			<td>
				<asp:Label ID="LabelDomain" runat="server" Text="Domain"></asp:Label>
			</td>
		</tr>
	</table>
	<table style="height: 400px;">
		<tr style="vertical-align: top; height: inherit;">
			<td style="height: inherit">
				<uc1:DirManCollection ID="DirManCollection" runat="server" />
			</td>
			<td style="height: inherit">
				<uc2:CaptchaRepeater ID="CaptchaRepeater" runat="server" />
			</td>
		</tr>
	</table>
	<br />
	<table>
		<tr>
			<td>
				<asp:Button ID="ButtonVerified" runat="server" Text="Verified" BackColor="Black"
					Font-Names="Aharoni" ForeColor="White" Height="30px" OnClick="ButtonVerified_Click" />
			</td>
			<td>
				<asp:Button ID="ButtonManual" runat="server" Text="Manual" BackColor="Black" Font-Names="Aharoni"
					ForeColor="White" Height="30px" OnClick="ButtonManual_Click" />
			</td>
			<td>
				<asp:Button ID="ButtonPaid" runat="server" Text="Paid" BackColor="Black" Font-Names="Aharoni"
					ForeColor="White" Height="30px" OnClick="ButtonPaid_Click" />
			</td>
			<td>
				<asp:Button ID="ButtonDeactivate" runat="server" Text="Deactivate" BackColor="Black"
					Font-Names="Aharoni" ForeColor="White" Height="30px" OnClick="ButtonDeactivate_Click" />
			</td>
		</tr>
	</table>
	<asp:UpdatePanel ID="UpdatePanelViewWebPage" runat="server" UpdateMode="Conditional">
		<ContentTemplate>
			<asp:Button ID="ButtonToggleWebPageViewer" runat="server" Text="Show Web Page" />
			<%--<div style="width: 1000px; height: 400px; overflow: auto;" id="divViewCurrentWebPage"
					runat="server">			
				</div>--%>
			<br />
			<iframe style="width: 1000px; height: 400px; overflow: auto;" id="iframeViewWebPage"
				runat="server"></iframe>
		</ContentTemplate>
	</asp:UpdatePanel>
 
</asp:Content>
 
 
 
 
 
 
 
 
 
 
PAGE THAT DOES NOT WORK (HTML SOURCE):
 
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="ctl00_ctl00_headTag"><title>
	Untitled Page
</title><link href="../../App_Themes/Network%20Solutions/favicon.ico" media="image/vnd.microsoft.icon" rel="shortcut icon" /><link href="../../App_Themes/Network%20Solutions/favicon.ico" rel="icon" type="image/x-icon" /><link href="../../App_Themes/Network%20Solutions/favicon.ico" media="image/x-icon" rel="shortcut icon" /><link href="../../App_Themes/Network%20Solutions/images/apple-touch-icon.png" rel="apple-touch-icon" />
	<!--[if lt IE 7]>
<script language="JavaScript">
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6.
{
   var arVersion = navigator.appVersion.split("MSIE")
   var version = parseFloat(arVersion[1])
   if ((version >= 5.5) && (document.body.filters)) 
   {
      for(var i=0; i<document.images.length; i++)
      {
         var img = document.images[i]
         var imgName = img.src.toUpperCase()
         if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
         {
            var imgID = (img.id) ? "id='" + img.id + "' " : ""
            var imgClass = (img.className) ? "class='" + img.className + "' " : ""
            var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
            var imgStyle = "display:inline-block;" + img.style.cssText 
            if (img.align == "left") imgStyle = "float:left;" + imgStyle
            if (img.align == "right") imgStyle = "float:right;" + imgStyle
            if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
            var strNewHTML = "<span " + imgID + imgClass + imgTitle
            + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
            + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
            + "(src=\'" + img.src + "\', sizingMethod='image');\"></span>" 
            img.outerHTML = strNewHTML
            i = i-1
         }
      }
   }    
}
window.attachEvent("onload", correctPNG);
</script>
<![endif]-->
</head>
<body style="display: none;" id="body">
	<form name="aspnetForm" method="post" action="DirectoryManagement.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLT...
 
view state removed
 
" />
</div>
 
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>
</script>
 
 
 
<script src="/ScriptResource.axd?d=Crd3ax5V032MnuKFv5SoxrOHUJkRGkqjYOW78h5R8VVeqjl2Xb4eC0Mjf3s6gMeqqQmkgX7FskqP3gaZO-bv-zNGIo5pFXW61Ao67YQJdws1&amp;t=633499015718443229" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
//]]>
</script>
 
<script src="../../js/main.js" type="text/javascript"></script>
<script src="../../API/AccountService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/ReportingService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/EmailService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/FilterService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/UserService.asmx/jsdebug" type="text/javascript"></script>
		
<script type="text/javascript">
	var pageGuid = '21569f9c-718b-4c63-aeae-f19427ec9577';
	var count = 0;
	
	function checkPage()
	{
		AccountService.CheckPage(pageGuid, window.location.href, count, pageCheckSuccess);
	}
	var pageTimer = setInterval('checkPage()', 3600000);
	
	function pageCheckSuccess(result, args)
	{
		if(result != null && result.ReturnData != null && result.ReturnData != '')
		{
			eval(result.ReturnData);
		}
		if(result != null && result.StopTimer == true)
		{
			clearInterval(pageTimer);
		}	
		count = result.Count;
	}
</script>
<input type="hidden" id="testMode" value="True" />
		<div id="container">
			
<!-- header -->
<div id="header">
	<div id="headerRight">
		<div id="ctl00_ctl00_headerControl_accountDiv">
			<span id="ctl00_ctl00_headerControl_accountLabel"><span class="orangeHeading">Welcome Tom Knowlton</span><br /><span style="font-weight:bold;">Role: </span>Administrator - [Product Development]<br /><span style="font-weight:bold;">Marketing Campaign: </span>OrangeSoda&nbsp;(ID: 100)<br /><a href="../ManageAccounts.aspx">Manage Accounts</a>&nbsp;|&nbsp;<a href="../AccountOverview.aspx">Account Overview</a>&nbsp;|&nbsp;<a title="Sign Out" href="../../Logout.aspx">Sign Out</a></span>
		</div>
		<div id="ctl00_ctl00_headerControl_accountDiv1">
			<span id="ctl00_ctl00_headerControl_editUserLabel"><a href="javascript:__doPostBack('ctl00$ctl00$headerControl$ctl00','')">Edit User Settings</a></span>
		</div>
		<div id="ctl00_ctl00_headerControl_accountDiv2">
			<span id="ctl00_ctl00_headerControl_newMessageLabel"></span>
		</div>
	</div>
	<div style="vertical-align: middle; margin: 5px 0px 10px 10px;">
		<img id="ctl00_ctl00_headerControl_headerImage" title="Network Solutions" src="/App_Themes/Network%20Solutions/images/logo2.jpg" alt="Network Solutions" style="border-width:0px;" />
		
	</div>
</div>
 
			
	
<div id="navigation">
	
	<ul>
	<li>
		    <a href="../../Dashboard.aspx" id="ctl00_ctl00_bodyContent_navigationControl_dashboardLink"><span class="navLeft">
    		</span><span>Dashboard</span> <span class="navRight"></span></a>
    	</li>
		<li>
		        <a href="../../Alerts" id="ctl00_ctl00_bodyContent_navigationControl_alertsLink">
			    <span class="navLeft"></span><span>Alerts</span> <span class="navRight"></span></a>
			</li>
		
		    <li><a href="../../SiteTracking.aspx" id="ctl00_ctl00_bodyContent_navigationControl_siteTrackingLink"><span class="navLeft">
		    </span><span>Site Tracking</span> <span class="navRight"></span></a></li>
		
		    <li><a href="../../Reports/" id="ctl00_ctl00_bodyContent_navigationControl_reportingLink"><span class="navLeft"></span>
			    <span>Reporting</span><span class="navRight"></span></a>
			    <ul style="z-index: 9999;">
				    <li>
				        <a href="../../Reporting.aspx" class="sub1" title="Internal Reporting">Internal Reporting</a>
				    </li>
			    </ul>
		    </li>
		<li>
		    <a href="../../Leads/" id="ctl00_ctl00_bodyContent_navigationControl_leadsLink"><span class="navLeft"></span>
			    <span>Leads</span> <span class="navRight"></span>
			    <!--[if IE 7]><!-->
		    </a>
			    <!--<![endif]-->
			    <!--[if lte IE 6]><table><tr><td><![endif]-->
			    <ul style="z-index: 9999;">
				    <li><a class="sub" href="#" title="Leads Manager">Leads Manager<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					    <ul>
						    <li>
						        <a href="../../Leads/UnassignedLeads.aspx" class="sub" title="Unassigned Leads">Unassigned Leads</a>
						    </li>
						    <li>
						        <a href="../../Leads/AddLeadSource.aspx" class="sub" title="Add a Lead Source">Add a Lead Source</a>
						    </li>
						    <li>
						        <a href="../../Leads/ImportLeads.aspx" class="sub" title="Import Leads">Import Leads</a>
						    </li>
						    <li><a href="../../Leads/SearchLeads.aspx" class="sub" title="Search Leads">
							    Search Leads</a></li>
						    <li><a href="../../Leads/MyLeads.aspx" class="sub" title="My Leads">My
							    Leads</a></li>
						    <li><a href="../../Leads/AddLead.aspx" class="sub" title="Add a Lead">Add
							    a Lead</a></li>
					    </ul>
					    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
				    </li>
				    <li><a class="sub" href="#" title="Reports">Reports<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					    <ul>
					        <li>
					            <a href="../../Leads/LeadActionReport.aspx" class="sub" title="Lead Action Report">Lead Action Report</a>
					        </li>
						    <li><a href="../PendingSubscriptions.aspx" class="sub" title="Pending Sales">
							    My Pending Sales</a></li>
						    <li><a href="../../Leads/MySales.aspx" class="sub" title="My Sales">My
							    Sales</a></li>
					    </ul>
					    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
				    </li>
		            <li>
		                <a href="../../Leads/Crawler/" class="sub" title="Lead Crawler">Lead Crawler</a>
			            <ul>
				            <li>
				                <a href="../../Leads/Crawler/CreateCrawlerRequest.aspx" class="sub" title="Create Crawler Request">Create a Crawler Request</a>
				            </li>
				            <li>
				                <a href="../../Leads/Crawler/ViewCrawlerRequests.aspx" class="sub" title="View Crawler Requests">View Crawler Requests</a>
				            </li>
			            </ul>
		            </li>
			    </ul>
			    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
		</li>
	<li>
		    <a id="ctl00_ctl00_bodyContent_navigationControl_toolsLink" class="active"><span class="navLeft"></span>
			<span>Tools</span> <span class="navRight"></span>
			<!--[if IE 7]><!-->
		    </a>
			<!--<![endif]-->
			<!--[if lte IE 6]><table><tr><td><![endif]-->
			<ul style="z-index: 9999;">
				<li><a class="sub" href="#" title="Account Management">Account Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li><a href="../ManageAccounts.aspx" class="sub" title="ManageAccounts">Manage Accounts</a></li>
						<li><a href="../AccountOverview.aspx" class="sub" title="Account Overview">Account Overview</a></li>
						<li>
						    <a href="../PendingSubscriptions.aspx" class="sub" title="Pending Subscriptions">Pending Subscriptions</a>
						</li>
						<li>
						    <a href="../BillingTransactions.aspx" class="sub" title="Transactions by Account">Transactions by Account</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a href="../ManageAffiliates.aspx" class="sub" title="Affiliate Management">Affiliate Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="User Management">User Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../CreateUser.aspx" class="sub" title="Create User">Create user</a>
						</li>
						<li>
						    <a href="../ManageUsers.aspx" class="sub" title="Manage Users">Manage Users</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="Campaign Management">Campaign Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../BulkUpload.aspx" class="sub" title="Bulk Upload">Bulk Upload</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="Call Tracking Management">Call Tracking Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../ImportExportCallTracking.aspx?mode=import" class="sub" title="Import Call Tracking Numbers">Import Client Numbers</a>
						</li>
						<li>
						    <a href="../ImportExportCallTracking.aspx?mode=export" class="sub" title="Export Unsynched Client Numbers">Export Client Numbers</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="Finance">Finance<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../Billing/" class="sub" title="Advanced Billing Tools"> Advanced Billing Tools</a>
						</li>
						<li>
						    <a href="../Finance/" class="sub" title="Advanced Reporting">Advanced Reporting</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="SEO">SEO<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li><a href="./" class="sub" title="SEO Tools">SEO Tools</a></li>
						<li><a href="../Task/LinkBuilder.aspx?Action=FormVerification" class="sub" title="Directory Verification">Directory Verification</a></li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a href="../../Profiles/Manage.aspx" id="ctl00_ctl00_bodyContent_navigationControl_A1" class="sub" title="Profile Management">Profile Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a href="../../Reporting.aspx" class="sub" title="Internal Reports">Internal Reports<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
						<a href="../KeywordCreationTool.aspx" id="ctl00_ctl00_bodyContent_navigationControl_A3" class="sub" title="Keyword Creation Tool">Keyword Creation Tool (BETA)<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->						
			    </li>
			</ul>
			<!--[if lte IE 6]></td></tr></table></a><![endif]-->
		</li>
		<li>
		    <a href="./" id="ctl00_ctl00_bodyContent_navigationControl_seoLink"><span class="navLeft"></span><span>SEO</span><span class="navRight"></span></a>
			<ul style="z-index: 9999;">
				<li><a href="DownloadCenter.aspx" class="sub1" title="SEO Download Center">Download Center</a></li>
				<li><a href="SEOReportQueue.aspx" class="sub1" title="SEO Report Queue">SEO Report Queue</a></li>
				<li><a href="KeywordDifficulty.aspx" class="sub1" title="Keyword Difficulty">Keyword Difficulty</a></li>
			</ul>
		</li>
		<li>
		    <a href="../Workflow" id="ctl00_ctl00_bodyContent_navigationControl_workflowLink"><span class="navLeft"></span><span>Workflow</span> <span class="navRight"></span><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
			<ul style="z-index: 9999;">
				<li><a href="../Workflow/AccountManager.aspx" class="sub1" title="Account Manager Workflow">Account Manager Workflow</a></li>
				<li><a href="../Workflow/SEOManager.aspx" class="sub1" title="SEO Manager Workflow">SEO Manager Workflow</a></li>
				
				<li><a href="../Workflow/WebManager.aspx" class="sub1" title="Web Designer Workflow">Web Designer Workflow</a></li>
			</ul>
			<!--[if lte IE 6]></td></tr></table></a><![endif]-->
		</li>
		<li>
		    <a href="../task/taskdashboard.aspx" id="ctl00_ctl00_bodyContent_navigationControl_tasklinkb"><span class="navLeft"></span><span>Task</span> <span class="navRight"></span></a>
		    <ul style="z-index: 9999;">
					<li><a id="ctl00_ctl00_bodyContent_navigationControl_task1" href="../Task/TaskDashboard.aspx">Dashboard</a></li>
					<li><a id="ctl00_ctl00_bodyContent_navigationControl_task2" href="../Task/MessageCenter.aspx">Message Center</a></li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task3" href="../Task/AddEditTask.aspx?Action=new">Create Task</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task4" href="../Task/TaskOverview.aspx">Search Tasks</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task5" href="../Task/AddRoadMap.aspx">Roadmaps</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task6" href="../Task/TaskTemplateDetail.aspx?Action=new">Manage Templates</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task7" href="../Task/GroupManagment.aspx">Manage Groups</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task8" href="../Task/UserTemplateRelationship.aspx">Template Relationships</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task9" href="../Task/TaskQueues.aspx?Action=new">Queues</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task10" href="../Task/TaskAdminDashboard.aspx">SEO Task Reporting</a>
					</li>
		    </ul>
		</li>
		
        
	    
	</ul>
</div>
 
<div id="subNav">
	<!-- The subNav Control will build a list of a href tags pipe "|" delimited -->
	<!-- <a href="#">Summary</a> | <a href="#">Import</a> | <a href="#">Search</a> -->
	
	
	    <div style="float: right;">
		    Client Support:
		    (888) 642-9317
		    &nbsp; - <a href="../../ResourceCenter/" cssclass="affiliateLink">Resource
			    Center</a></div>
	
</div>
 
	<div id="content">
		
 
<script type="text/javascript">
        function RadioChecked(current)
        {               
           for(i = 0; i < document.forms[0].elements.length; i++)
           {
              elm = document.forms[0].elements[i];
                          
              if (elm.type == 'radio')      
              {           
                    if(elm != current)
                    {
                        elm.checked = false;                                                              
                    }
              }
           }           
           
						__doPostBack(current.value,'CAPTCHARADIO');              
        }
    
        function checkSelectValues(element, str) 
        {
            ss = document.getElementsByTagName("SELECT");
	
	        for(x=0;x<ss.length;x++)	         
	        {	        	         
                
                if(ss[x].id.indexOf(str) != -1) 
                {        
	        
		            if ((ss[x].id != element.id) && (ss[x].value == element.value)) 
		            {
									ss[x].value = "0";		             
		            } 
		            else 
		            {
		            }
		        }
	        }
        }            
	</script>
 
	<table>
		<tr>
			<td>
				<span id="ctl00_ctl00_bodyContent_mainContent_LabelTitle" style="font-size:Larger;font-weight:bold;">Link Builder</span>
				<br />
				<br />
			</td>
		</tr>
		<tr>
			<td>
				<span id="ctl00_ctl00_bodyContent_mainContent_LabelDomain">canlinks.net</span>
			</td>
		</tr>
	</table>
	<table style="height: 400px;">
		<tr style="vertical-align: top; height: inherit;">
			<td style="height: inherit">
				
 
<table style="height:200px; border-bottom-style:solid;border-bottom-width:thin;border-right-style:solid;border-right-width:thin;border-left-style:solid;border-left-width:thin;border-top-width:1;border-top-style:solid;border-color:Black;">
    <thead style="height:30px; line-height:30px; background-color:Gray; color: #FFFFFF; font-family: Aharoni;">
        <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_Label1" style="margin-left:10px;">Directory Management</span>
    </thead>
    <tr>
        <td>&nbsp;</td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownTitle_LabelFieldTitle">Title:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownTitle$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownTitle_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
	<option selected="selected" value="0">&lt;Not Required&gt;</option>
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownURL_LabelFieldTitle">URL:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownURL$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownURL_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
	<option selected="selected" value="0">&lt;Not Required&gt;</option>
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownDescription_LabelFieldTitle">Description:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownDescription$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownDescription_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
	<option selected="selected" value="0">&lt;Not Required&gt;</option>
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownEmail_LabelFieldTitle">Email:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownEmail$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownEmail_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
	<option selected="selected" value="0">&lt;Not Required&gt;</option>
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownName_LabelFieldTitle">Name:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownName$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownName_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
	<option selected="selected" value="0">&lt;Not Required&gt;</option>
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownCategory_LabelFieldTitle">Category:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownCategory$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownCategory_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
	<option selected="selected" value="0">&lt;Not Required&gt;</option>
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownTypeField_LabelFieldTitle">Type Field:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownTypeField$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownTypeField_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>
    <tr>
        <td>
            
 
<table>
    <tr>
        <td style="width:100px;">
            <span id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownTypeValue_LabelFieldTitle">Type Value:</span>
        </td>
        <td>
            <select name="ctl00$ctl00$bodyContent$mainContent$DirManCollection$DirectoryManagementDropDownTypeValue$DropDownListMapping" id="ctl00_ctl00_bodyContent_mainContent_DirManCollection_DirectoryManagementDropDownTypeValue_DropDownListMapping" onchange="checkSelectValues(this,'DropDownListMapping')" style="width:200px;">
 
</select>
        </td>
    </tr>
</table>
        </td>
    </tr>    
</table>
			</td>
			<td style="height: inherit">
				
 
<table style="height:288px;overflow:auto;solid; border-bottom-width: thin;
	border-right-style: solid; border-right-width: thin; border-left-style: solid;
	border-left-width: thin; border-top-width: 1; border-top-style: solid; border-color: Black;">
	<thead style="height: 30px; line-height: 30px; background-color: Gray; color: #FFFFFF;font-family: Aharoni;">
		<span id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_Label1" style="margin-left: 10px;">Captcha Selection List</span>
	</thead>
    <tr>
        <td>
            <div id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_divcaptcha" style="vertical-align:top;overflow:auto;width:400px;">
                <table border="0">
	<tr>
		<td>
 
 
<style type="text/css">
    .style1
    {
        width: 70px;
    }
</style>
 
<table width="100">
    <tr>
        <td align="center" class="style1">
        &nbsp;<img id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_ctl01_ImageCaptcha" src="http://www.canlinks.net/images/transp.gif" style="border-width:2px;border-style:Solid;height:100px;width:100px;" />
        </td>
    </tr>
    <tr>
        <td align="center" class="style1">
            <span ToolTip="http://www.canlinks.net/images/transp.gif"><input id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_ctl01_ValueRadioButtonCaptchaSelected" type="radio" name="ctl00$ctl00$bodyContent$mainContent$CaptchaRepeater$ctl01$ValueRadioButtonCaptchaSelected" value="http://www.canlinks.net/images/transp.gif" onclick="RadioChecked(this);" /></span>
        </td>
    </tr>
</table></td><td>
 
 
<style type="text/css">
    .style1
    {
        width: 70px;
    }
</style>
 
<table width="100">
    <tr>
        <td align="center" class="style1">
        &nbsp;<img id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_ctl02_ImageCaptcha" src="http://www.canlinks.net/images/canlinkstext.gif" style="border-width:2px;border-style:Solid;height:100px;width:100px;" />
        </td>
    </tr>
    <tr>
        <td align="center" class="style1">
            <span ToolTip="http://www.canlinks.net/images/canlinkstext.gif"><input id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_ctl02_ValueRadioButtonCaptchaSelected" type="radio" name="ctl00$ctl00$bodyContent$mainContent$CaptchaRepeater$ctl02$ValueRadioButtonCaptchaSelected" value="http://www.canlinks.net/images/canlinkstext.gif" onclick="RadioChecked(this);" /></span>
        </td>
    </tr>
</table></td><td>
 
 
<style type="text/css">
    .style1
    {
        width: 70px;
    }
</style>
 
<table width="100">
    <tr>
        <td align="center" class="style1">
        &nbsp;<img id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_ctl03_ImageCaptcha" src="http://www.canlinks.net/images/transp.gif" style="border-width:2px;border-style:Solid;height:100px;width:100px;" />
        </td>
    </tr>
    <tr>
        <td align="center" class="style1">
            <span ToolTip="http://www.canlinks.net/images/transp.gif"><input id="ctl00_ctl00_bodyContent_mainContent_CaptchaRepeater_ctl03_ValueRadioButtonCaptchaSelected" type="radio" name="ctl00$ctl00$bodyContent$mainContent$CaptchaRepeater$ctl03$ValueRadioButtonCaptchaSelected" value="http://www.canlinks.net/images/transp.gif" onclick="RadioChecked(this);" /></span>
        </td>
    </tr>
</table></td>
	</tr>
</table>
            </div>
        </td>
    </tr>
</table>
 
 
			</td>
		</tr>
	</table>
	<br />
	<table>
		<tr>
			<td>
				<input type="submit" name="ctl00$ctl00$bodyContent$mainContent$ButtonVerified" value="Verified" id="ctl00_ctl00_bodyContent_mainContent_ButtonVerified" style="color:White;background-color:Black;font-family:Aharoni;height:30px;" />
			</td>
			<td>
				<input type="submit" name="ctl00$ctl00$bodyContent$mainContent$ButtonManual" value="Manual" id="ctl00_ctl00_bodyContent_mainContent_ButtonManual" style="color:White;background-color:Black;font-family:Aharoni;height:30px;" />
			</td>
			<td>
				<input type="submit" name="ctl00$ctl00$bodyContent$mainContent$ButtonPaid" value="Paid" id="ctl00_ctl00_bodyContent_mainContent_ButtonPaid" style="color:White;background-color:Black;font-family:Aharoni;height:30px;" />
			</td>
			<td>
				<input type="submit" name="ctl00$ctl00$bodyContent$mainContent$ButtonDeactivate" value="Deactivate" id="ctl00_ctl00_bodyContent_mainContent_ButtonDeactivate" style="color:White;background-color:Black;font-family:Aharoni;height:30px;" />
			</td>
		</tr>
	</table>
	<div id="ctl00_ctl00_bodyContent_mainContent_UpdatePanelViewWebPage">
	
			<input type="submit" name="ctl00$ctl00$bodyContent$mainContent$ButtonToggleWebPageViewer" value="Show Web Page" id="ctl00_ctl00_bodyContent_mainContent_ButtonToggleWebPageViewer" />
			
			<br />
			
		
</div>
 
 
	</div>
 
			
<!-- begin footer -->
<div id="footer">
	<div id="footerbuttons">
		Copyright &copy; Network Solutions 2008. All Rights Reserved.<br />
		
		<a href="http://www.networksolutions.com/legal/legal-notice.jsp" title="Terms of Use">Terms of Use</a>
		
	</div>
</div>
 
		</div>
	
 
<script type="text/javascript">
//<![CDATA[
Sys.Application.initialize();
//]]>
</script>
</form>
	
 
	<script language="javascript" type="text/javascript">
		var mn = 'TKNOWLTON1';
		SetFocus();
	</script>
 
</body>
</html>
 
 
 
 
 
 
 
 
 
 
PAGE THAT WORKS (ASPX):
 
<%@ Page Language="C#" MasterPageFile="~/MasterPages/CMSNavigation.master" AutoEventWireup="true"
	CodeFile="Default.aspx.cs" Inherits="Tools_SEO_Default" Title="SEO Tool .:|:. OrangeSoda" %>
 
<%@ Register TagPrefix="os" TagName="AltTagTool" Src="~/UserControls/SEO/AltTagTool.ascx" %>
<%@ Register Src="~/UserControls/SEO/LinkTitleTool.ascx" TagName="LinkTitleTool"
	TagPrefix="os" %>
<%@ Register Src="~/UserControls/SEO/MetaTagTool.ascx" TagName="MetaTagTool" TagPrefix="os" %>
<%@ Register Src="~/UserControls/SEO/TitleTool.ascx" TagName="TitleTool" TagPrefix="os" %>
<%@ Register Src="~/UserControls/SEO/SitemapGeneratorTool.ascx" TagName="SitemapGeneratorTool"
	TagPrefix="os" %>
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" runat="Server">
 
	<script language="javascript" type="text/javascript">
		function CharacterCount(textboxID, labelID, recommendedCount)
		{
			var clabel = document.getElementById(labelID);
			var tbox = document.getElementById(textboxID);
			var tempTitle = tbox.value
			clabel.innerHTML = tempTitle.length + " characters (" + recommendedCount + " recommended)";
			if (tempTitle.length < recommendedCount)
			{
				clabel.style.backgroundColor= "green";
				clabel.style.color = "white";
			}
			else if (tempTitle.length >= recommendedCount && tempTitle.length < (recommendedCount * 2))
			{
				clabel.style.backgroundColor = "yellow";
				clabel.style.color = "black";
			}
			else
			{
				clabel.style.backgroundColor = "red";
				clabel.style.color = "white";
			}
			
		}
	</script>
 
	<div id="innerContent">
		<h1 class="orangeHeading">
			SEO Tools</h1>
		<br />
		<p>
			<asp:Label ID="errorLabel" runat="server" ForeColor="red" Visible="false"></asp:Label>
		</p>
		<table>
			<tr>
				<td>
					Client ID:
				</td>
				<td>
					<asp:TextBox ID="clientIDTextBox" runat="server" MaxLength="5" Width="50px"></asp:TextBox>
				</td>
			</tr>
			<tr>
				<td>
					Spider Limit (up to 100):
				</td>
				<td>
					<asp:TextBox ID="spiderLimitTextBox" runat="server" MaxLength="3" Width="30px"></asp:TextBox>
				</td>
			</tr>
			<tr>
				<td>
					Request Interval:
				</td>
				<td>
					<asp:TextBox ID="requestIntervalTextBox" runat="server" MaxLength="4" Width="40px"></asp:TextBox>
					milliseconds
				</td>
			</tr>
			<tr>
				<td>
					Tool:
				</td>
				<td>
					<asp:DropDownList ID="toolDropDownList" runat="server" Width="200px">
						<asp:ListItem Value="TitleTool">Title Tool</asp:ListItem>
						<asp:ListItem Value="AltTagTool">Alt Tag Tool</asp:ListItem>
						<asp:ListItem Value="MetaTagTool">META Tag Tool</asp:ListItem>
						<asp:ListItem Value="LinkTitleTool">Link Title Tool</asp:ListItem>
						<asp:ListItem Value="SitemapGeneratorTool">Sitemap Generator Tool</asp:ListItem>
					</asp:DropDownList>
				</td>
			</tr>
			<tr>
				<td colspan="2" style="text-align: center">
					<asp:Button ID="beginButton" runat="server" OnClick="beginButton_Click" Text="Begin" />
				</td>
			</tr>
		</table>
		<br />
		<os:AltTagTool ID="altTagTool" runat="server" Visible="false" />
		<os:LinkTitleTool ID="linkTitleTool" runat="server" Visible="false" />
		<os:MetaTagTool ID="metaTagTool" runat="server" Visible="false" />
		<os:TitleTool ID="titleTool" runat="server" Visible="false" />
		<os:SitemapGeneratorTool ID="sitemapGeneratorTool" runat="server" Visible="false" />
	</div>
</asp:Content>
 
 
 
 
 
 
 
 
 
 
PAGE THAT WORKS (HTML SOURCE):
 
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="ctl00_ctl00_headTag"><title>
	SEO Tool .:|:. Network Solutions
</title><link href="../../App_Themes/Network%20Solutions/favicon.ico" media="image/vnd.microsoft.icon" rel="shortcut icon" /><link href="../../App_Themes/Network%20Solutions/favicon.ico" rel="icon" type="image/x-icon" /><link href="../../App_Themes/Network%20Solutions/favicon.ico" media="image/x-icon" rel="shortcut icon" /><link href="../../App_Themes/Network%20Solutions/images/apple-touch-icon.png" rel="apple-touch-icon" />
	<!--[if lt IE 7]>
<script language="JavaScript">
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6.
{
   var arVersion = navigator.appVersion.split("MSIE")
   var version = parseFloat(arVersion[1])
   if ((version >= 5.5) && (document.body.filters)) 
   {
      for(var i=0; i<document.images.length; i++)
      {
         var img = document.images[i]
         var imgName = img.src.toUpperCase()
         if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
         {
            var imgID = (img.id) ? "id='" + img.id + "' " : ""
            var imgClass = (img.className) ? "class='" + img.className + "' " : ""
            var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
            var imgStyle = "display:inline-block;" + img.style.cssText 
            if (img.align == "left") imgStyle = "float:left;" + imgStyle
            if (img.align == "right") imgStyle = "float:right;" + imgStyle
            if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
            var strNewHTML = "<span " + imgID + imgClass + imgTitle
            + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
            + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
            + "(src=\'" + img.src + "\', sizingMethod='image');\"></span>" 
            img.outerHTML = strNewHTML
            i = i-1
         }
      }
   }    
}
window.attachEvent("onload", correctPNG);
</script>
<![endif]-->
<link href="../../App_Themes/Network%20Solutions/css/leads.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/partner-signup.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/SpryMenuBarHorizontal.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/style.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/style.main.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/style.main2.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/style.menu.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/style.oiladmin.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/style.profile.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/Style.Task.css" type="text/css" rel="stylesheet" /><link href="../../App_Themes/Network%20Solutions/css/TaskSystem.css" type="text/css" rel="stylesheet" /></head>
<body style="display: none;" id="body">
	<form name="aspnetForm" method="post" action="default.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKL...
 
view state removed
 
" />
</div>
 
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>
</script>
 
 
 
<script src="/ScriptResource.axd?d=Crd3ax5V032MnuKFv5SoxrOHUJkRGkqjYOW78h5R8VVeqjl2Xb4eC0Mjf3s6gMeqqQmkgX7FskqP3gaZO-bv-zNGIo5pFXW61Ao67YQJdws1&amp;t=633499015718443229" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
//]]>
</script>
 
<script src="../../js/main.js" type="text/javascript"></script>
<script src="../../API/AccountService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/ReportingService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/EmailService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/FilterService.asmx/jsdebug" type="text/javascript"></script>
<script src="../../API/UserService.asmx/jsdebug" type="text/javascript"></script>
		
<script type="text/javascript">
	var pageGuid = '09be37a9-c6f1-4102-9974-0835034ada0d';
	var count = 0;
	
	function checkPage()
	{
		AccountService.CheckPage(pageGuid, window.location.href, count, pageCheckSuccess);
	}
	var pageTimer = setInterval('checkPage()', 3600000);
	
	function pageCheckSuccess(result, args)
	{
		if(result != null && result.ReturnData != null && result.ReturnData != '')
		{
			eval(result.ReturnData);
		}
		if(result != null && result.StopTimer == true)
		{
			clearInterval(pageTimer);
		}	
		count = result.Count;
	}
</script>
<input type="hidden" id="testMode" value="True" />
		<div id="container">
			
<!-- header -->
<div id="header">
	<div id="headerRight">
		<div id="ctl00_ctl00_headerControl_accountDiv">
			<span id="ctl00_ctl00_headerControl_accountLabel"><span class="orangeHeading">Welcome Tom Knowlton</span><br /><span style="font-weight:bold;">Role: </span>Administrator - [Product Development]<br /><span style="font-weight:bold;">Marketing Campaign: </span>OrangeSoda&nbsp;(ID: 100)<br /><a href="../ManageAccounts.aspx">Manage Accounts</a>&nbsp;|&nbsp;<a href="../AccountOverview.aspx">Account Overview</a>&nbsp;|&nbsp;<a title="Sign Out" href="../../Logout.aspx">Sign Out</a></span>
		</div>
		<div id="ctl00_ctl00_headerControl_accountDiv1">
			<span id="ctl00_ctl00_headerControl_editUserLabel"><a href="javascript:__doPostBack('ctl00$ctl00$headerControl$ctl00','')">Edit User Settings</a></span>
		</div>
		<div id="ctl00_ctl00_headerControl_accountDiv2">
			<span id="ctl00_ctl00_headerControl_newMessageLabel"></span>
		</div>
	</div>
	<div style="vertical-align: middle; margin: 5px 0px 10px 10px;">
		<img id="ctl00_ctl00_headerControl_headerImage" title="Network Solutions" src="/App_Themes/Network%20Solutions/images/logo2.jpg" alt="Network Solutions" style="border-width:0px;" />
		
	</div>
</div>
 
			
	
<div id="navigation">
	
	<ul>
	<li>
		    <a href="../../Dashboard.aspx" id="ctl00_ctl00_bodyContent_navigationControl_dashboardLink"><span class="navLeft">
    		</span><span>Dashboard</span> <span class="navRight"></span></a>
    	</li>
		<li>
		        <a href="../../Alerts" id="ctl00_ctl00_bodyContent_navigationControl_alertsLink">
			    <span class="navLeft"></span><span>Alerts</span> <span class="navRight"></span></a>
			</li>
		
		    <li><a href="../../SiteTracking.aspx" id="ctl00_ctl00_bodyContent_navigationControl_siteTrackingLink"><span class="navLeft">
		    </span><span>Site Tracking</span> <span class="navRight"></span></a></li>
		
		    <li><a href="../../Reports/" id="ctl00_ctl00_bodyContent_navigationControl_reportingLink"><span class="navLeft"></span>
			    <span>Reporting</span><span class="navRight"></span></a>
			    <ul style="z-index: 9999;">
				    <li>
				        <a href="../../Reporting.aspx" class="sub1" title="Internal Reporting">Internal Reporting</a>
				    </li>
			    </ul>
		    </li>
		<li>
		    <a href="../../Leads/" id="ctl00_ctl00_bodyContent_navigationControl_leadsLink"><span class="navLeft"></span>
			    <span>Leads</span> <span class="navRight"></span>
			    <!--[if IE 7]><!-->
		    </a>
			    <!--<![endif]-->
			    <!--[if lte IE 6]><table><tr><td><![endif]-->
			    <ul style="z-index: 9999;">
				    <li><a class="sub" href="#" title="Leads Manager">Leads Manager<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					    <ul>
						    <li>
						        <a href="../../Leads/UnassignedLeads.aspx" class="sub" title="Unassigned Leads">Unassigned Leads</a>
						    </li>
						    <li>
						        <a href="../../Leads/AddLeadSource.aspx" class="sub" title="Add a Lead Source">Add a Lead Source</a>
						    </li>
						    <li>
						        <a href="../../Leads/ImportLeads.aspx" class="sub" title="Import Leads">Import Leads</a>
						    </li>
						    <li><a href="../../Leads/SearchLeads.aspx" class="sub" title="Search Leads">
							    Search Leads</a></li>
						    <li><a href="../../Leads/MyLeads.aspx" class="sub" title="My Leads">My
							    Leads</a></li>
						    <li><a href="../../Leads/AddLead.aspx" class="sub" title="Add a Lead">Add
							    a Lead</a></li>
					    </ul>
					    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
				    </li>
				    <li><a class="sub" href="#" title="Reports">Reports<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					    <ul>
					        <li>
					            <a href="../../Leads/LeadActionReport.aspx" class="sub" title="Lead Action Report">Lead Action Report</a>
					        </li>
						    <li><a href="../PendingSubscriptions.aspx" class="sub" title="Pending Sales">
							    My Pending Sales</a></li>
						    <li><a href="../../Leads/MySales.aspx" class="sub" title="My Sales">My
							    Sales</a></li>
					    </ul>
					    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
				    </li>
		            <li>
		                <a href="../../Leads/Crawler/" class="sub" title="Lead Crawler">Lead Crawler</a>
			            <ul>
				            <li>
				                <a href="../../Leads/Crawler/CreateCrawlerRequest.aspx" class="sub" title="Create Crawler Request">Create a Crawler Request</a>
				            </li>
				            <li>
				                <a href="../../Leads/Crawler/ViewCrawlerRequests.aspx" class="sub" title="View Crawler Requests">View Crawler Requests</a>
				            </li>
			            </ul>
		            </li>
			    </ul>
			    <!--[if lte IE 6]></td></tr></table></a><![endif]-->
		</li>
	<li>
		    <a id="ctl00_ctl00_bodyContent_navigationControl_toolsLink"><span class="navLeft"></span>
			<span>Tools</span> <span class="navRight"></span>
			<!--[if IE 7]><!-->
		    </a>
			<!--<![endif]-->
			<!--[if lte IE 6]><table><tr><td><![endif]-->
			<ul style="z-index: 9999;">
				<li><a class="sub" href="#" title="Account Management">Account Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li><a href="../ManageAccounts.aspx" class="sub" title="ManageAccounts">Manage Accounts</a></li>
						<li><a href="../AccountOverview.aspx" class="sub" title="Account Overview">Account Overview</a></li>
						<li>
						    <a href="../PendingSubscriptions.aspx" class="sub" title="Pending Subscriptions">Pending Subscriptions</a>
						</li>
						<li>
						    <a href="../BillingTransactions.aspx" class="sub" title="Transactions by Account">Transactions by Account</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a href="../ManageAffiliates.aspx" class="sub" title="Affiliate Management">Affiliate Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="User Management">User Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../CreateUser.aspx" class="sub" title="Create User">Create user</a>
						</li>
						<li>
						    <a href="../ManageUsers.aspx" class="sub" title="Manage Users">Manage Users</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="Campaign Management">Campaign Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../BulkUpload.aspx" class="sub" title="Bulk Upload">Bulk Upload</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="Call Tracking Management">Call Tracking Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../ImportExportCallTracking.aspx?mode=import" class="sub" title="Import Call Tracking Numbers">Import Client Numbers</a>
						</li>
						<li>
						    <a href="../ImportExportCallTracking.aspx?mode=export" class="sub" title="Export Unsynched Client Numbers">Export Client Numbers</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="Finance">Finance<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li>
						    <a href="../Billing/" class="sub" title="Advanced Billing Tools"> Advanced Billing Tools</a>
						</li>
						<li>
						    <a href="../Finance/" class="sub" title="Advanced Reporting">Advanced Reporting</a>
						</li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a class="sub" href="#" title="SEO">SEO<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
					<ul>
						<li><a href="./" class="sub" title="SEO Tools">SEO Tools</a></li>
						<li><a href="../Task/LinkBuilder.aspx?Action=FormVerification" class="sub" title="Directory Verification">Directory Verification</a></li>
					</ul>
					<!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a href="../../Profiles/Manage.aspx" id="ctl00_ctl00_bodyContent_navigationControl_A1" class="sub" title="Profile Management">Profile Management<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
				    <a href="../../Reporting.aspx" class="sub" title="Internal Reports">Internal Reports<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->
				</li>
				<li>
						<a href="../KeywordCreationTool.aspx" id="ctl00_ctl00_bodyContent_navigationControl_A3" class="sub" title="Keyword Creation Tool">Keyword Creation Tool (BETA)<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><!--[if lte IE 6]></td></tr></table></a><![endif]-->						
			    </li>
			</ul>
			<!--[if lte IE 6]></td></tr></table></a><![endif]-->
		</li>
		<li>
		    <a href="./" id="ctl00_ctl00_bodyContent_navigationControl_seoLink"><span class="navLeft"></span><span>SEO</span><span class="navRight"></span></a>
			<ul style="z-index: 9999;">
				<li><a href="DownloadCenter.aspx" class="sub1" title="SEO Download Center">Download Center</a></li>
				<li><a href="SEOReportQueue.aspx" class="sub1" title="SEO Report Queue">SEO Report Queue</a></li>
				<li><a href="KeywordDifficulty.aspx" class="sub1" title="Keyword Difficulty">Keyword Difficulty</a></li>
			</ul>
		</li>
		<li>
		    <a href="../Workflow" id="ctl00_ctl00_bodyContent_navigationControl_workflowLink"><span class="navLeft"></span><span>Workflow</span> <span class="navRight"></span><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]-->
			<ul style="z-index: 9999;">
				<li><a href="../Workflow/AccountManager.aspx" class="sub1" title="Account Manager Workflow">Account Manager Workflow</a></li>
				<li><a href="../Workflow/SEOManager.aspx" class="sub1" title="SEO Manager Workflow">SEO Manager Workflow</a></li>
				
				<li><a href="../Workflow/WebManager.aspx" class="sub1" title="Web Designer Workflow">Web Designer Workflow</a></li>
			</ul>
			<!--[if lte IE 6]></td></tr></table></a><![endif]-->
		</li>
		<li>
		    <a href="../task/taskdashboard.aspx" id="ctl00_ctl00_bodyContent_navigationControl_tasklinkb"><span class="navLeft"></span><span>Task</span> <span class="navRight"></span></a>
		    <ul style="z-index: 9999;">
					<li><a id="ctl00_ctl00_bodyContent_navigationControl_task1" href="../Task/TaskDashboard.aspx">Dashboard</a></li>
					<li><a id="ctl00_ctl00_bodyContent_navigationControl_task2" href="../Task/MessageCenter.aspx">Message Center</a></li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task3" href="../Task/AddEditTask.aspx?Action=new">Create Task</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task4" href="../Task/TaskOverview.aspx">Search Tasks</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task5" href="../Task/AddRoadMap.aspx">Roadmaps</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task6" href="../Task/TaskTemplateDetail.aspx?Action=new">Manage Templates</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task7" href="../Task/GroupManagment.aspx">Manage Groups</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task8" href="../Task/UserTemplateRelationship.aspx">Template Relationships</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task9" href="../Task/TaskQueues.aspx?Action=new">Queues</a>
					</li>
					<li>
						<a id="ctl00_ctl00_bodyContent_navigationControl_task10" href="../Task/TaskAdminDashboard.aspx">SEO Task Reporting</a>
					</li>
		    </ul>
		</li>
		
        
	    
	</ul>
</div>
 
<div id="subNav">
	<!-- The subNav Control will build a list of a href tags pipe "|" delimited -->
	<!-- <a href="#">Summary</a> | <a href="#">Import</a> | <a href="#">Search</a> -->
	
	
	    <div style="float: right;">
		    Client Support:
		    (888) 642-9317
		    &nbsp; - <a href="../../ResourceCenter/" cssclass="affiliateLink">Resource
			    Center</a></div>
	
</div>
 
	<div id="content">
		
 
	<script language="javascript" type="text/javascript">
		function CharacterCount(textboxID, labelID, recommendedCount)
		{
			var clabel = document.getElementById(labelID);
			var tbox = document.getElementById(textboxID);
			var tempTitle = tbox.value
			clabel.innerHTML = tempTitle.length + " characters (" + recommendedCount + " recommended)";
			if (tempTitle.length < recommendedCount)
			{
				clabel.style.backgroundColor= "green";
				clabel.style.color = "white";
			}
			else if (tempTitle.length >= recommendedCount && tempTitle.length < (recommendedCount * 2))
			{
				clabel.style.backgroundColor = "yellow";
				clabel.style.color = "black";
			}
			else
			{
				clabel.style.backgroundColor = "red";
				clabel.style.color = "white";
			}
			
		}
	</script>
 
	<div id="innerContent">
		<h1 class="orangeHeading">
			SEO Tools</h1>
		<br />
		<p>
			
		</p>
		<table>
			<tr>
				<td>
					Client ID:
				</td>
				<td>
					<input name="ctl00$ctl00$bodyContent$mainContent$clientIDTextBox" type="text" maxlength="5" id="ctl00_ctl00_bodyContent_mainContent_clientIDTextBox" style="width:50px;" />
				</td>
			</tr>
			<tr>
				<td>
					Spider Limit (up to 100):
				</td>
				<td>
					<input name="ctl00$ctl00$bodyContent$mainContent$spiderLimitTextBox" type="text" maxlength="3" id="ctl00_ctl00_bodyContent_mainContent_spiderLimitTextBox" style="width:30px;" />
				</td>
			</tr>
			<tr>
				<td>
					Request Interval:
				</td>
				<td>
					<input name="ctl00$ctl00$bodyContent$mainContent$requestIntervalTextBox" type="text" maxlength="4" id="ctl00_ctl00_bodyContent_mainContent_requestIntervalTextBox" style="width:40px;" />
					milliseconds
				</td>
			</tr>
			<tr>
				<td>
					Tool:
				</td>
				<td>
					<select name="ctl00$ctl00$bodyContent$mainContent$toolDropDownList" id="ctl00_ctl00_bodyContent_mainContent_toolDropDownList" style="width:200px;">
	<option value="TitleTool">Title Tool</option>
	<option value="AltTagTool">Alt Tag Tool</option>
	<option value="MetaTagTool">META Tag Tool</option>
	<option value="LinkTitleTool">Link Title Tool</option>
	<option value="SitemapGeneratorTool">Sitemap Generator Tool</option>
 
</select>
				</td>
			</tr>
			<tr>
				<td colspan="2" style="text-align: center">
					<input type="submit" name="ctl00$ctl00$bodyContent$mainContent$beginButton" value="Begin" id="ctl00_ctl00_bodyContent_mainContent_beginButton" />
				</td>
			</tr>
		</table>
		<br />
		
		
		
		
		
	</div>
 
	</div>
 
			
<!-- begin footer -->
<div id="footer">
	<div id="footerbuttons">
		Copyright &copy; Network Solutions 2008. All Rights Reserved.<br />
		
		<a href="http://www.networksolutions.com/legal/legal-notice.jsp" title="Terms of Use">Terms of Use</a>
		
	</div>
</div>
 
		</div>
	
 
<script type="text/javascript">
//<![CDATA[
Sys.Application.initialize();
//]]>
</script>
</form>
	
 
	<script language="javascript" type="text/javascript">
		var mn = 'TKNOWLTON1';
		SetFocus();
	</script>
 
</body>
</html>
Attachments:
 
menu bar
menu bar
 
[+][-]07/30/08 01:08 PM, ID: 22124264

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/30/08 01:33 PM, ID: 22124546

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Programming for ASP.NET
Sign Up Now!
Solution Provided By: knowlton
Participating Experts: 0
Solution Grade: A
 
 
 
Loading Advertisement...
20090824-EE-VQP-74 / EE_QW_EXPERT_20070906