ASP 2.0 MenuItem text color applying sporadically

B

Berni

The master page contains the following style. 1). When I run the app
all the submenu items have white text except one. I can't find anything
different. 2). A Few pages create another menu in a content place
holder. The parent menu Item applies the CSS style but all the child
menu items do not apply the white text color (they do apply the rest of
the style sheet font, bold etc).
I have tried all the various available syntax for Dynamic & static menu
properties. And I even tried without the style sheet just setting
forecolor = white on each menu. What am I missing? Any suggestions?:

Inline Style sheet on master page. (I tried a regular file with the
same results as well):
<style type="text/css">
.AmpsMenuStyle
{
font-weight: bold;
color: white;
font-size: 12px;
font-family: Arial;
padding:1px;
background-color:#aaacc5;
}
</style>

Menu created on Master page. I load this dynamically from the db. All
of the menuitems pick up the css formatting except one. It has all the
formatting except the text color:
<asp:Menu BorderWidth="0px" ID="AmpsMainMenu" runat="server"
DynamicHoverStyle-CssClass="AmpsMenuStyle"
DynamicMenuItemStyle-CssClass="AmpsMenuStyle"
DynamicMenuStyle-CssClass="AmpsMenuStyle"
StaticHoverStyle-CssClass="AmpsMenuStyle"
StaticMenuItemStyle-CssClass="AmpsMenuStyle"
StaticMenuStyle-CssClass="AmpsMenuStyle"
StaticPopOutImageUrl="~/images/bullets/DownArrow.gif"></asp:menu>

Menus on content pages. Task View picks up the css but the child menus
don't oick up just the text color:
<asp:Menu ID="TaskViewMenu" runat="server"
DynamicHoverStyle-CssClass="AmpsMenuStyle"
DynamicMenuItemStyle-CssClass="AmpsMenuStyle"
DynamicMenuStyle-CssClass="AmpsMenuStyle"
Orientation="vertical" StaticDisplayLevels="1"
StaticHoverStyle-CssClass="AmpsMenuStyle"
StaticMenuItemStyle-CssClass="AmpsMenuStyle"
StaticMenuStyle-CssClass="AmpsMenuStyle"
StaticPopOutImageUrl="~/images/bullets/DownArrow.gif"><Items>
<asp:MenuItem Text="Task View">
<asp:MenuItem Text="View Current"
Value="ViewCurrent"
NavigateUrl="~/ApplicationMainPage.aspx?TaskView=1"></asp:MenuItem>
<asp:MenuItem Text="View Completed" Value="ViewCompleted"
NavigateUrl="~/ApplicationMainPage.aspx?TaskView=2"></asp:MenuItem>
<asp:MenuItem Text="View Deleted" Value="ViewDeleted"
NavigateUrl="~/ApplicationMainPage.aspx?TaskView=3"></asp:MenuItem> </asp:MenuItem>
</Items></asp:Menu>

Here is the code from IE:
These are the titles of the menu items that aren't working: Maintain
Auditor Information , View Current, View Completed & View Deleted



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 4.0 Transitional//EN" >

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<style type="text/css">
.AmpsMenuStyle
{
font-weight: bold;
color: white;
font-size: 12px;
font-family: Arial;
padding:1px;
background-color:#aaacc5;
}
</style>
<title>
Amps
</title>
<script type="text/javascript" language="javascript">
function OpenFeedback() {
var NewWin;
var Features =
'width=500,height=480,left=10,top=10,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes';

NewWin = window.open('','Feedback',Features);
NewWin.focus();
NewWin.location.href =
"http://testCFCNet.cinfin.com/[email protected]&APPNAME=AMPS";
}

function OpenSupport() {
var NewWin;
var Features =
'width=500,height=480,left=10,top=10,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes';

NewWin = window.open('','Feedback',Features);
NewWin.focus();
NewWin.location.href =
"http://testCFCNet.cinfin.com/common/applicationtemplate/ApplicationSupport.asp";
}
</script>
<script type="text/javascript"language="javascript"
src="DatePicker.js"></script>

<!--Style Sheets-->
<link
href="http://testcfcnet.cinfin.com/common/applicationtemplate/styles/NauticalNavy.css"
type="text/css" rel="stylesheet" /><link
href="http://testcfcnet.cinfin.com/common/styles/CFCNetStyle.css"
type="text/css" rel="stylesheet" />
<!--Copied from Rule Approve-->
<link href="common.css" type="text/css" rel="stylesheet" /><style
type="text/css">
.ctl00_AmpsMainMenu_0 {
background-color:white;visibility:hidden;display:none;position:absolute;left:0px;top:0px;
}
.ctl00_AmpsMainMenu_1 { text-decoration:none; }
.ctl00_AmpsMainMenu_2 { border-width:0px; }
.ctl00_AmpsMainMenu_3 { border-style:none; }
.ctl00_AmpsMainMenu_4 { }
.ctl00_AmpsMainMenu_5 { }
.ctl00_AmpsMainMenu_6 { border-style:none; }
.ctl00_AmpsMainMenu_7 { }
.ctl00_AmpsMainMenu_8 { }
.ctl00_AmpsMainMenu_9 { border-style:none; }
.ctl00_AmpsMainMenu_10 { }
.ctl00_AmpsMainMenu_11 { border-style:none; }
.ctl00_AmpsMainMenu_12 { }
.ctl00_cphSubMenu_TaskViewMenu_0 {
background-color:white;visibility:hidden;display:none;position:absolute;left:0px;top:0px;
}
.ctl00_cphSubMenu_TaskViewMenu_1 { text-decoration:none; }
.ctl00_cphSubMenu_TaskViewMenu_2 { }
.ctl00_cphSubMenu_TaskViewMenu_3 { border-style:none; }
.ctl00_cphSubMenu_TaskViewMenu_4 { }
.ctl00_cphSubMenu_TaskViewMenu_5 { }
.ctl00_cphSubMenu_TaskViewMenu_6 { border-style:none; }
.ctl00_cphSubMenu_TaskViewMenu_7 { }
.ctl00_cphSubMenu_TaskViewMenu_8 { }
.ctl00_cphSubMenu_TaskViewMenu_9 { border-style:none; }
.ctl00_cphSubMenu_TaskViewMenu_10 { }
.ctl00_cphSubMenu_TaskViewMenu_11 { border-style:none; }
.ctl00_cphSubMenu_TaskViewMenu_12 { }

</style></head>
<body style="margin-top:0px; margin-left:0px; margin-right:0px;
height:95%" >
<form name="aspnetForm" method="post"
action="ApplicationMainPage.aspx?TaskView=1" id="aspnetForm"
style="height:100%">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value=""
/>
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT"
value="" />
<input type="hidden" name="StaticPostBackScrollVerticalPosition"
id="StaticPostBackScrollVerticalPosition" value="" />
<input type="hidden" name="StaticPostBackScrollHorizontalPosition"
id="StaticPostBackScrollHorizontalPosition" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwUJOTAxMjA0OTg5D2QWAmYPZBYCAgMPZBYGAgMPPCsADQEMFCsAAgUDMDowFCsAAhYEHgRUZXh0BQlBbXBzIE1lbnUeBVZhbHVlBQlBbXBzTWVudTEUKwAKBSMwOjAsMDoxLDA6MiwwOjMsMDo0LDA6NSwwOjYsMDo3LDA6OBQrAAIWBh8ABQ5BdWRpdCBUcmFja2luZx8BBQIxOR4LTmF2aWdhdGVVcmwFHX4vQUFjY291bnRzLmFzcHg/Vmlldz1TRSZBVD0wZBQrAAIWBh8ABQ9BdWRpdCBSZXBvcnRpbmcfAQUCMjAfAgUafi9BUmVwb3J0cy5hc3B4P1VzZXJSb2xlPTNkFCsAAhYGHwAFE1BvbGljeSBSZWFzc2lnbm1lbnQfAQUCMTEfAgUPfi9SZWFzc2lnbi5hc3B4ZBQrAAIWBh8ABRRBc3NpZ25lZCBQb2xpY3kgTGlzdB8BBQIxMx8CBQ9+L1BvbGljaWVzLmFzcHhkFCsAAhYGHwAFEldhaXZlZCBQb2xpY3kgTGlzdB8BBQIxMh8CBRx+L1BvbGljaWVzLmFzcHg/QWN0aW9uPVdhaXZlZBQrAAIWBh8ABRhBdWRpdCBPcmRlcmluZyBVdGlsaXRpZXMfAQUBOR8CBSN+L1J1bGVVdGlsaXRpZXMuYXNweD9BY3Rpb249Vmlld0FsbGQUKwACFgQfAAUURW1wbG95ZWUgTWFpbnRlbmFuY2UfAQUCMTQUKwADBQcwOjAsMDoxFCsAAhYGHwAFEEFkZC9Nb2RpZnkgVXNlcnMfAQUCMTQfAgUMfi9Vc2Vycy5hc3B4ZBQrAAIWBh8ABRNUZWNobmljaWFuIERheXMgT2ZmHwEFAjE0HwIFE34vVGVjaFJlYXNzaWduLmFzcHhkFCsAAhYEHwAFEEF1ZGl0IFR5cGUgUnVsZXMfAQUBMhQrAAMFBzA6MCwwOjEUKwACFgYfAAUUTWFpbnRhaW4gQXVkaXQgUnVsZXMfAQUBMh8CBSV+L1J1bGUuYXNweD9SdWxlVHlwZT1VJkFjdGlvbj1WaWV3QWxsZBQrAAIWBh8ABRVNYWludGFpbiBBdWRpdCBWYWx1ZXMfAQUBMh8CBSt+L1RocmVzaG9sZC5hc3B4P1ZhbHVlVHlwZT1VJkFjdGlvbj1WaWV3QWxsZBQrAAIWBB8ABQ1BdWRpdG9yIFJ1bGVzHwEFATUUKwAEBQswOjAsMDoxLDA6MhQrAAIWBh8ABRxNYWludGFpbiBBdWRpdG9yIEluZm9ybWF0aW9uHwEFATUfAgUTfi9BdWRpdG9yc0luZm8uYXNweGQUKwACFgYfAAUWTWFpbnRhaW4gQXVkaXRvciBSdWxlcx8BBQE1HwIFJX4vUnVsZS5hc3B4P1J1bGVUeXBlPUEmQWN0aW9uPVZpZXdBbGxkFCsAAhYGHwAFF01haW50YWluIEF1ZGl0b3IgVmFsdWVzHwEFATUfAgUrfi9UaHJlc2hvbGQuYXNweD9WYWx1ZVR5cGU9QSZBY3Rpb249Vmlld0FsbGRkAgcPZBYIAgMPDxYCHwBlZGQCBQ8PFgIfAAUUTmV3IFRhc2tzIC0gTm8gVGFza3NkZAIHD2QWAgIBDzwrAAsBAA8WDB4LXyFJdGVtQ291bnRmHghEYXRhS2V5cxYAHgdWaXNpYmxlaB4QQ3VycmVudFBhZ2VJbmRleGYeCVBhZ2VDb3VudAIBHhVfIURhdGFTb3VyY2VJdGVtQ291bnRmZGQCCQ8PFgIfBWdkFgYCAQ88KwALAQAPFgofBmYfBBYAHwMCCh8HAgUfCAIxZBYCZg9kFhQCAg9kFgRmDw8WAh8ABRhJbnZhbGlkIEF1ZGl0b3IgQXNzaWduZWRkZAIBDw8WAh8ABQYxMDM3MjhkZAIDD2QWBGYPDxYCHwAFDFBlZ2d5IEJlaG5lbmRkAgEPDxYCHwAFAjU5ZGQCBA9kFgRmDw8WAh8ABQpBbmR5IEJvZXNlZGQCAQ8PFgIfAAUCNzBkZAIFD2QWBGYPDxYCHwAFEENhcm9sZSBDaHJpc3RpYW5kZAIBDw8WAh8ABQMzNTdkZAIGD2QWBGYPDxYCHwAFClRvZCBDcmFjYXNkZAIBDw8WAh8ABQIxN2RkAgcPZBYEZg8PFgIfAAUNU2FuZGllIEVkd2FyZGRkAgEPDxYCHwAFAzUxM2RkAggPZBYEZg8PFgIfAAUMQW5uIEVyaWNrc29uZGQCAQ8PFgIfAAUCNzdkZAIJD2QWBGYPDxYCHwAFEFZpY2tpIEdvdWR6d2FhcmRkZAIBDw8WAh8ABQI4MWRkAgoPZBYEZg8PFgIfAAURTWF0dGhldyBIYW1icmlnaHRkZAIBDw8WAh8ABQMxNDNkZAILD2QWBGYPDxYCHwAFClRlcnJ5IEhpdGVkZAIBDw8WAh8ABQMzNDNkZAIDDw8WAh8ABQYxMjYzMTFkZAIHDw8WAh8ABQYxMDUwMThkZAIJD2QWAmYPZBYCAgEPFgIeCWlubmVyaHRtbAU3JmNvcHk7IENvcHlyaWdodCAyMDA3LCBUaGUgQ2luY2lubmF0aSBJbnN1cmFuY2UgQ29tcGFueWRkQKF4YYCs0KkVQF7CLiZMa9mqGAc="
/>
</div>

<script type="text/javascript">
<!--
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="/AMPS.WebClient/WebResource.axd?d=I9vSWBNBKnmXTVkCS-Z08A2&amp;t=632990156795016128"
type="text/javascript"></script>


<script
src="/AMPS.WebClient/WebResource.axd?d=1ABNYgK3EReggTa__OPQ3Q2&amp;t=632990156795016128"
type="text/javascript"></script><script language="JavaScript">
function SaveScrollPositions() {
document.forms[0].StaticPostBackScrollVerticalPosition.value =
(navigator.appName == 'Netscape') ? window.pageYOffset :
document.body.scrollTop;document.forms[0].StaticPostBackScrollHorizontalPosition.value
= (navigator.appName == 'Netscape') ? window.pageXOffset :
document.body.scrollLeft;setTimeout('SaveScrollPositions()', 10);}
SaveScrollPositions();
</script>


<div style="height:95%">
<table id="TABLE1" cellpadding="0" cellspacing="0"
class="main" onclick="return TABLE1_onclick()" width="100%" >
<tr align="left" valign="top">
<td colspan="2" class="header" height="10%">
<table cellpadding="0" cellspacing="0" width="100%">
<tr style="COLOR: #ffffff">
<td>
<map id="cfcnet_map" name="cfcnet_map">
<area shape="RECT" coords="3,21,91,36"
href="Intro.aspx" alt="Application Template Image"/>
</map>
<img border="0" height="100%"
src="http://testCFCNet.cinfin.com/common/ApplicationTemplate/images/Amps.gif"
usemap="#cfcnet_map" alt="App Image"/>
</td>
<td align="right" style=" height:100%; margin:
[0%][0%][0%][0%]; background-image:
url(http://testCFCNet.cinfin.com/common/ApplicationTemplate/images/ApplicationHeading2.gif);
background-repeat: no-repeat;" valign="top"
width="1280">
<a href="javascript:OpenFeedback();"
class="headeranchor">Feedback</a> | <a href="javascript:OpenSupport();"
class="headeranchor">
Customer Support</a> &nbsp;
</td>
</tr>
<tr class="clsGlobalNav" style="margin: [0%][0%][0%][0%]">
<td colspan="2" style="height: 17px">
</td>
</tr>

<tr>
<td><span
id="ctl00_lblErrorMessage" style="color:Red;"></span></td>
</tr>
<tr>
<td>
<a
href="#ctl00_AmpsMainMenu_SkipLink"><img alt="Skip Navigation Links"
src="/AMPS.WebClient/WebResource.axd?d=dlK5hYMNy9sUIbm3Fx5DjA2&amp;t=632990156795016128"
width="0" height="0" style="border-width:0px;" /></a><table
id="ctl00_AmpsMainMenu" class="AmpsMenuStyle ctl00_AmpsMainMenu_5
ctl00_AmpsMainMenu_2" cellpadding="0" cellspacing="0" border="0">
<tr onmouseover="Menu_HoverStatic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun0">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_4" cellpadding="0"
cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_3"
href="javascript:__doPostBack('ctl00$AmpsMainMenu','AmpsMenu1')"
style="border-style:none;font-size:1em;">Amps Menu</a></td><td
style="width:0;"><img src="images/bullets/DownArrow.gif" alt="Expand
Amps Menu" style="border-style:none;vertical-align:middle;" /></td>
</tr>
</table></td>
</tr>
</table><div id="ctl00_AmpsMainMenun0Items" class="ctl00_AmpsMainMenu_0
AmpsMenuStyle ctl00_AmpsMainMenu_8">
<table border="0" cellpadding="0" cellspacing="0">
<tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun1">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="AAccounts.aspx?View=SE&amp;AT=0"
style="border-style:none;font-size:1em;">Audit Tracking</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun2">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="AReports.aspx?UserRole=3"
style="border-style:none;font-size:1em;">Audit Reporting</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun3">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Reassign.aspx" style="border-style:none;font-size:1em;">Policy
Reassignment</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun4">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Policies.aspx" style="border-style:none;font-size:1em;">Assigned
Policy List</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun5">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Policies.aspx?Action=Waive"
style="border-style:none;font-size:1em;">Waived Policy List</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun6">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="RuleUtilities.aspx?Action=ViewAll"
style="border-style:none;font-size:1em;">Audit Ordering
Utilities</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun7">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="javascript:__doPostBack('ctl00$AmpsMainMenu','AmpsMenu1\\14')"
style="border-style:none;font-size:1em;">Employee
Maintenance</a></td><td style="width:0;"><img
src="/AMPS.WebClient/WebResource.axd?d=K3jnR-gyXFWe3K_xDvMmTd2GnMSUSrc4wB1UiGvWqDo1&amp;t=632990156795016128"
alt="Expand Employee Maintenance"
style="border-style:none;vertical-align:middle;" /></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun8">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="javascript:__doPostBack('ctl00$AmpsMainMenu','AmpsMenu1\\2')"
style="border-style:none;font-size:1em;">Audit Type Rules</a></td><td
style="width:0;"><img
src="/AMPS.WebClient/WebResource.axd?d=K3jnR-gyXFWe3K_xDvMmTd2GnMSUSrc4wB1UiGvWqDo1&amp;t=632990156795016128"
alt="Expand Audit Type Rules"
style="border-style:none;vertical-align:middle;" /></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun9">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="javascript:__doPostBack('ctl00$AmpsMainMenu','AmpsMenu1\\5')"
style="border-style:none;font-size:1em;">Auditor Rules</a></td><td
style="width:0;"><img
src="/AMPS.WebClient/WebResource.axd?d=K3jnR-gyXFWe3K_xDvMmTd2GnMSUSrc4wB1UiGvWqDo1&amp;t=632990156795016128"
alt="Expand Auditor Rules"
style="border-style:none;vertical-align:middle;" /></td>
</tr>
</table></td>
</tr>
</table><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun0ItemsUp"
onmouseover="PopOut_Up(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=YCduDDK2oYBtIRGXBPCIjyFpvkCkO53QVnByz3t34_A1&amp;t=632990156795016128"
alt="Scroll up" />
</div><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun0ItemsDn"
onmouseover="PopOut_Down(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=lPGfP_LGZQ1-4ksZTfEZ3EKKXL1q4NeQF7V2GGDT3XA1&amp;t=632990156795016128"
alt="Scroll down" />
</div>
</div><div id="ctl00_AmpsMainMenun7Items" class="ctl00_AmpsMainMenu_0
AmpsMenuStyle ctl00_AmpsMainMenu_8">
<table border="0" cellpadding="0" cellspacing="0">
<tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun10">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Users.aspx" style="border-style:none;font-size:1em;">Add/Modify
Users</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun11">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="TechReassign.aspx"
style="border-style:none;font-size:1em;">Technician Days Off</a></td>
</tr>
</table></td>
</tr>
</table><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun7ItemsUp"
onmouseover="PopOut_Up(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=YCduDDK2oYBtIRGXBPCIjyFpvkCkO53QVnByz3t34_A1&amp;t=632990156795016128"
alt="Scroll up" />
</div><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun7ItemsDn"
onmouseover="PopOut_Down(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=lPGfP_LGZQ1-4ksZTfEZ3EKKXL1q4NeQF7V2GGDT3XA1&amp;t=632990156795016128"
alt="Scroll down" />
</div>
</div><div id="ctl00_AmpsMainMenun8Items" class="ctl00_AmpsMainMenu_0
AmpsMenuStyle ctl00_AmpsMainMenu_8">
<table border="0" cellpadding="0" cellspacing="0">
<tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun12">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Rule.aspx?RuleType=U&amp;Action=ViewAll"
style="border-style:none;font-size:1em;">Maintain Audit Rules</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun13">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Threshold.aspx?ValueType=U&amp;Action=ViewAll"
style="border-style:none;font-size:1em;">Maintain Audit Values</a></td>
</tr>
</table></td>
</tr>
</table><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun8ItemsUp"
onmouseover="PopOut_Up(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=YCduDDK2oYBtIRGXBPCIjyFpvkCkO53QVnByz3t34_A1&amp;t=632990156795016128"
alt="Scroll up" />
</div><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun8ItemsDn"
onmouseover="PopOut_Down(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=lPGfP_LGZQ1-4ksZTfEZ3EKKXL1q4NeQF7V2GGDT3XA1&amp;t=632990156795016128"
alt="Scroll down" />
</div>
</div><div id="ctl00_AmpsMainMenun9Items" class="ctl00_AmpsMainMenu_0
AmpsMenuStyle ctl00_AmpsMainMenu_8">
<table border="0" cellpadding="0" cellspacing="0">
<tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun14">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="AuditorsInfo.aspx"
style="border-style:none;font-size:1em;">Maintain Auditor
Information</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun15">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Rule.aspx?RuleType=A&amp;Action=ViewAll"
style="border-style:none;font-size:1em;">Maintain Auditor
Rules</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_AmpsMainMenun16">
<td><table class="AmpsMenuStyle ctl00_AmpsMainMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_AmpsMainMenu_1 AmpsMenuStyle ctl00_AmpsMainMenu_6"
href="Threshold.aspx?ValueType=A&amp;Action=ViewAll"
style="border-style:none;font-size:1em;">Maintain Auditor
Values</a></td>
</tr>
</table></td>
</tr>
</table><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun9ItemsUp"
onmouseover="PopOut_Up(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=YCduDDK2oYBtIRGXBPCIjyFpvkCkO53QVnByz3t34_A1&amp;t=632990156795016128"
alt="Scroll up" />
</div><div class="AmpsMenuStyle ctl00_AmpsMainMenu_7
ctl00_AmpsMainMenu_0" id="ctl00_AmpsMainMenun9ItemsDn"
onmouseover="PopOut_Down(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=lPGfP_LGZQ1-4ksZTfEZ3EKKXL1q4NeQF7V2GGDT3XA1&amp;t=632990156795016128"
alt="Scroll down" />
</div>
</div><a id="ctl00_AmpsMainMenu_SkipLink"></a>
</td>
<td>
<table>

<tr>
<td>
<div>
<a href="#ctl00_cphSubMenu_TaskViewMenu_SkipLink"><img
alt="Skip Navigation Links"
src="/AMPS.WebClient/WebResource.axd?d=dlK5hYMNy9sUIbm3Fx5DjA2&amp;t=632990156795016128"
width="0" height="0" style="border-width:0px;" /></a><table
id="ctl00_cphSubMenu_TaskViewMenu" class="AmpsMenuStyle
ctl00_cphSubMenu_TaskViewMenu_5 ctl00_cphSubMenu_TaskViewMenu_2"
cellpadding="0" cellspacing="0" border="0">
<tr onmouseover="Menu_HoverStatic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_cphSubMenu_TaskViewMenun0">
<td><table class="AmpsMenuStyle ctl00_cphSubMenu_TaskViewMenu_4"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_cphSubMenu_TaskViewMenu_1 AmpsMenuStyle
ctl00_cphSubMenu_TaskViewMenu_3"
href="javascript:__doPostBack('ctl00$cphSubMenu$TaskViewMenu','Task
View')" style="border-style:none;font-size:1em;">Task View</a></td><td
style="width:0;"><img src="images/bullets/DownArrow.gif" alt="Expand
Task View" style="border-style:none;vertical-align:middle;" /></td>
</tr>
</table></td>
</tr>
</table><div id="ctl00_cphSubMenu_TaskViewMenun0Items"
class="ctl00_cphSubMenu_TaskViewMenu_0 AmpsMenuStyle
ctl00_cphSubMenu_TaskViewMenu_8">
<table border="0" cellpadding="0" cellspacing="0">
<tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_cphSubMenu_TaskViewMenun1">
<td><table class="AmpsMenuStyle ctl00_cphSubMenu_TaskViewMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_cphSubMenu_TaskViewMenu_1 AmpsMenuStyle
ctl00_cphSubMenu_TaskViewMenu_6"
href="ApplicationMainPage.aspx?TaskView=1"
style="border-style:none;font-size:1em;">View Current</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_cphSubMenu_TaskViewMenun2">
<td><table class="AmpsMenuStyle ctl00_cphSubMenu_TaskViewMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_cphSubMenu_TaskViewMenu_1 AmpsMenuStyle
ctl00_cphSubMenu_TaskViewMenu_6"
href="ApplicationMainPage.aspx?TaskView=2"
style="border-style:none;font-size:1em;">View Completed</a></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)"
onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)"
id="ctl00_cphSubMenu_TaskViewMenun3">
<td><table class="AmpsMenuStyle ctl00_cphSubMenu_TaskViewMenu_7"
cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a
class="ctl00_cphSubMenu_TaskViewMenu_1 AmpsMenuStyle
ctl00_cphSubMenu_TaskViewMenu_6"
href="ApplicationMainPage.aspx?TaskView=3"
style="border-style:none;font-size:1em;">View Deleted</a></td>
</tr>
</table></td>
</tr>
</table><div class="AmpsMenuStyle ctl00_cphSubMenu_TaskViewMenu_7
ctl00_cphSubMenu_TaskViewMenu_0"
id="ctl00_cphSubMenu_TaskViewMenun0ItemsUp"
onmouseover="PopOut_Up(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=YCduDDK2oYBtIRGXBPCIjyFpvkCkO53QVnByz3t34_A1&amp;t=632990156795016128"
alt="Scroll up" />
</div><div class="AmpsMenuStyle ctl00_cphSubMenu_TaskViewMenu_7
ctl00_cphSubMenu_TaskViewMenu_0"
id="ctl00_cphSubMenu_TaskViewMenun0ItemsDn"
onmouseover="PopOut_Down(this)" onmouseout="PopOut_Stop(this)"
style="text-align:center;">
<img
src="/AMPS.WebClient/WebResource.axd?d=lPGfP_LGZQ1-4ksZTfEZ3EKKXL1q4NeQF7V2GGDT3XA1&amp;t=632990156795016128"
alt="Scroll down" />
</div>
</div><a id="ctl00_cphSubMenu_TaskViewMenu_SkipLink"></a>
</div>
</td>

</table>
</td>
</tr>
</table>


<td class="header" colspan="1" height="10%">
</td>

<tr ><td></td></tr>
<tr valign="top" >
<td width="10px">&nbsp;</td>
<td valign="top" height="100%" width="100%">


<table cellpadding="5" width="100%" border="0">
<tr>
<td valign="top" >
<table cellspacing="0" width="100%" border="0">
<tr class="clsModuleHeader">
<td align="center">
Audit Management Processing System
1.5.0.0</td>
</tr>
<tr>
<td>
<span
id="ctl00_cphMainContent_lblErrorMessage"
style="color:Red;"></span></td>
</tr>
<tr class="clsModuleHeader">
<td align="left">
<span
id="ctl00_cphMainContent_lblView">New Tasks - No Tasks</span></td>
</tr>
<tr>
<td valign="top" align="center">
<div
id="ctl00_cphMainContent_pnlDeptHead" style="text-align:center;">


</div>
</td>
</tr>
<tr>
<td align="center">
&nbsp;</td>
</tr>
<tr>
<td>
<div
id="ctl00_cphMainContent_pnlAuditAnalyst"
style="width:100%;text-align:center;">

<table id="Table4" cellspacing="1"
cellpadding="1" width="100%" border="0">
<tr class="clsModuleHeader">
<td align="left">
Auditor Counts</td>
</tr>
<tr>
<td width="100%">
<table cellspacing="0"
cellpadding="3" align="Left" rules="all" border="1"
id="ctl00_cphMainContent_dgAuditorCounts"
style="border-width:1px;border-style:Solid;font-size:X-Small;width:100%;border-collapse:collapse;">
<tr style="background-color:activeborder;">
<td>Auditor</td><td>Assign Count</td>
</tr><tr>
<td>Invalid Auditor Assigned</td><td>103728</td>
</tr><tr>
<td>Peggy Behnen</td><td>59</td>
</tr><tr>
<td>Andy Boese</td><td>70</td>
</tr><tr>
<td>Carole Christian</td><td>357</td>
</tr><tr>
<td>Tod Cracas</td><td>17</td>
</tr><tr>
<td>Sandie Edward</td><td>513</td>
</tr><tr>
<td>Ann Erickson</td><td>77</td>
</tr><tr>
<td>Vicki Goudzwaard</td><td>81</td>
</tr><tr>
<td>Matthew Hambright</td><td>143</td>
</tr><tr>
<td>Terry Hite</td><td>343</td>
</tr><tr align="right">
<td colspan="2"><span>1</span>&nbsp;<a
href="javascript:__doPostBack('ctl00$cphMainContent$dgAuditorCounts$ctl14$ctl01','')">2</a>&nbsp;<a
href="javascript:__doPostBack('ctl00$cphMainContent$dgAuditorCounts$ctl14$ctl02','')">3</a>&nbsp;<a
href="javascript:__doPostBack('ctl00$cphMainContent$dgAuditorCounts$ctl14$ctl03','')">4</a>&nbsp;<a
href="javascript:__doPostBack('ctl00$cphMainContent$dgAuditorCounts$ctl14$ctl04','')">5</a></td>
</tr>
</table></td>
</tr>
<tr>
<td>
<span
id="ctl00_cphMainContent_lblNumAssigned"
style="font-weight:bold;">126311</span>&nbsp;
<span
id="ctl00_cphMainContent_Label3" style="font-weight:bold;">Total Audits
Assigned</span></td>
</tr>
<tr>
<td>
<span
id="ctl00_cphMainContent_lblNumUnassigned"
style="font-weight:bold;">105018</span>&nbsp;
<span
id="ctl00_cphMainContent_Label1" style="font-weight:bold;">Policies
could not be assigned using audit criteria within the
system</span></td>
</tr>
</table>

</div>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>

</td>
</tr>
</table>
</div>
<div style="height:5%">
<h2 style="margin-bottom:0px; height:5%">

<!-- END MAIN CONTENT -->
<tr>
<td>&nbsp;
<table width="100%" border="0" cellspacing="3"
class="clsHeaderFooter">
<tr>
<td id="ctl00_Applicationfooter1_tdFooterText"
align="center">&copy; Copyright 2007, The Cincinnati Insurance
Company</td>

</tr>
</table>
</td>
</tr>


</h2>
</div>


<script type="text/javascript">
<!--
var ctl00_AmpsMainMenu_Data = new Object();
ctl00_AmpsMainMenu_Data.disappearAfter = 500;
ctl00_AmpsMainMenu_Data.horizontalOffset = 0;
ctl00_AmpsMainMenu_Data.verticalOffset = 0;
ctl00_AmpsMainMenu_Data.hoverClass = 'ctl00_AmpsMainMenu_12
AmpsMenuStyle';
ctl00_AmpsMainMenu_Data.hoverHyperLinkClass = 'ctl00_AmpsMainMenu_11
AmpsMenuStyle';
ctl00_AmpsMainMenu_Data.staticHoverClass = 'ctl00_AmpsMainMenu_10
AmpsMenuStyle';
ctl00_AmpsMainMenu_Data.staticHoverHyperLinkClass =
'ctl00_AmpsMainMenu_9 AmpsMenuStyle';
var ctl00_cphSubMenu_TaskViewMenu_Data = new Object();
ctl00_cphSubMenu_TaskViewMenu_Data.disappearAfter = 500;
ctl00_cphSubMenu_TaskViewMenu_Data.horizontalOffset = 0;
ctl00_cphSubMenu_TaskViewMenu_Data.verticalOffset = 0;
ctl00_cphSubMenu_TaskViewMenu_Data.hoverClass =
'ctl00_cphSubMenu_TaskViewMenu_12 AmpsMenuStyle';
ctl00_cphSubMenu_TaskViewMenu_Data.hoverHyperLinkClass =
'ctl00_cphSubMenu_TaskViewMenu_11 AmpsMenuStyle';
ctl00_cphSubMenu_TaskViewMenu_Data.staticHoverClass =
'ctl00_cphSubMenu_TaskViewMenu_10 AmpsMenuStyle';
ctl00_cphSubMenu_TaskViewMenu_Data.staticHoverHyperLinkClass =
'ctl00_cphSubMenu_TaskViewMenu_9 AmpsMenuStyle';
// -->
</script>
</form>
</body>
</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,566
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top