Question

Duplicate Rendering in AJAX Update Panel - Visual Studio 2008

Asked by: Jeffreymarcum

I just migrated a VS2005 project to VS2008. I'm still using the 2.0 framework and version 1.0.11119.0 of the Ajax toolbox. I have a page that contains an update panel that contains several text and listview controls and a Gridview control. The ajax panel is configured to partial page render (ajax triggers) on 3 command buttons and a selection in a grid above this panel. The page is contained by a MasterPage.

When any of the command buttons or grid selection is fired in the update panel, the update panel renders an area in the bottom of the page twice. There are 4 buttons that are rendered and immediately below, there are the 4 exact buttons rendered. When I look at the I.E source, there is NOT any duplicate HTML for the duplicated command buttons. I did not have this problem when the project was still a VS2005 project.

Anyone know what might be going on? It seems it might have something to do with Ajax

<%@ Page Language="C#" MasterPageFile="~/SSPT.master" 
                       AutoEventWireup="true"
                       CodeFile="NDCFeeSchedMaint.aspx.cs" 
                       Inherits="NDCFeeSchedMaint" 
                       ClassName="NDCFeeSchedMaintClass"
                       Title="NDC Fee Schedule Maintenance"
                       EnableEventValidation="false" %>
 
<%@ MasterType VirtualPath="~/SSPT.master" %>
 
<asp:Content ID="NDCFeeScheduleMaint" ContentPlaceHolderID="SSPTMAIN" Runat="Server">
 
<script type="text/javascript">
var value1 = ""
 
// This function performs calls and postbacks to the server for the Search functionality
function CallTheServer(arg)
{
    var EQUALSAction = false;
    
    // ---- Search on Code Group (EQUALS ID Search) - call server CALLBACK method
    // Code Group ID
    var CodeGrpID = document.getElementById('<%= txtFeeSchedID.ClientID %>');
    if (CodeGrpID.value == '')
        {
            arg = '&'
        }
    else
        {
            //convert to uppercase
            arg = CodeGrpID.value.toUpperCase();
            EQUALSAction = true;
        }
 
    // Pending Approvals
    var lstPendAppr = document.getElementById('<%= lstPendAppr.ClientID %>');
    if (lstPendAppr.value == 'SELECT')
        {
            arg = arg + '\\&'
        }
    else
        {
            arg = arg + '\\' + lstPendAppr.value;
            EQUALSAction = true;
        }
 
    // Disapproved
    var lstDisAppr = document.getElementById('<%= lstDisAppr.ClientID %>');
    if (lstDisAppr.value == 'SELECT')
        {
            arg = arg + '\\&'
        }
    else
        {
            arg = arg + '\\' + lstDisAppr.value;
            EQUALSAction = true;
        }
    
    // Post the search parameters for callback or raise error
    if (EQUALSAction == true)
     {
        <%=strCallBackFunctionInvocation%>
     }
    else
    {
        __doPostBack('__Page', 'Status: Please enter at least one valid search parameter')
    }
    
}
 
// This function handles the callback from the server
function SearchReturn(arg, context)
{
    // Search results not found
    if (arg == 0)
    {
        var retPrompt= confirm("Search results not found. Would you like to create a Fee Schedule?");
        
        if (retPrompt== true)
        {
            <%=strPostBackFunctionInvocation1%>
        }
    }
    
    // New Fee Schedule
    else if (arg == 1)
    {
        <%=strPostBackFunctionInvocation2%>
    }
    
    // Error Message
    else 
    {
        __doPostBack('__Page', arg)
    }
   
}
    
// This function handles errors from from the callback from the server
function SearchReturnError(arg, context)
{
    srchmessage.innerText = 'Status: A search error has occured';
}
 
function popupFeeSchedNotes()
{
    var confirmWin = null;
    var arg;
    var FeeSchedID = document.getElementById('<%= txtFeeSchedID_Maint.ClientID %>');
    arg = FeeSchedID.value;
    var confirmURL = '<%=ResolveUrl("~/_NDC/FeeSchedMaint/NDCPopup_FeeSchedNotes.aspx?NDCScheduleID=' + arg + '")%>';
    confirmWin = window.open(confirmURL ,'anycontent','width=655,height=300,status');
}
 
function popupDistFeeSched()
{
    var confirmWin = null;
    var arg;
    var FeeSchedID = document.getElementById('<%= txtFeeSchedID_Maint.ClientID %>');
    arg = FeeSchedID.value;
    var confirmURL = '<%=ResolveUrl("~/_NDC/FeeSchedMaint/NDCPopup_DistFeeSched.aspx?NDCScheduleID=' + arg + '")%>';
    confirmWin = window.open(confirmURL ,'anycontent','width=940,height=300,status');
}
 
 
</script>
 
<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></ajaxToolkit:ToolkitScriptManager>
 
<%--NDC Fee Schedule Search Options--%>
<div id="FeeSched_Search_Master">
    <div id="FeeSched_search_header" class="searchlayoutheader">
    <asp:Label ID="lblSrchOpt" runat="server" Font-Underline="True" Height="21px" Text="Search Options:" Width="117px" Font-Bold="True"></asp:Label>
    </div>
        <div id="FeeSched_search_div1" class="searchlayout_feesched">
            <asp:Label ID="lblCodeGrpID" runat="server" Text="Fee Schedule:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedID" runat="server" ToolTip="Enter a Fee Schedule to search on" MaxLength="4" TabIndex="1" CssClass="textbox_ndc_codegrpmaint"></asp:TextBox>&nbsp;
        </div>
        
        <div id="FeeSched_search_div2" class="searchlayout_feesched">
            <asp:Label ID="lblPendAppr" runat="server" Text="Pending Approval:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:DropDownList ID="lstPendAppr" runat="server" AutoPostBack="True" TabIndex="2" ToolTip="Select a Pending Fee Schedule" CssClass="listbox_ndc_codegprmaint"></asp:DropDownList>
        </div>
    
        <div id="FeeSched_search_div3" class="searchlayout_feesched">
            <asp:Label ID="lblDisapproved" runat="server" Text="Disapproved:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:DropDownList ID="lstDisAppr" runat="server" AutoPostBack="True" TabIndex="3" ToolTip="Select a Disapproved Fee Schedule" CssClass="listbox_ndc_codegprmaint"></asp:DropDownList>
        </div>
        
        <div id="FeeSched_search_div4" class="searchlayout_feesched">
            <div id="Code_search_div4_sub1" style="text-align:right">
            <asp:Button ID="btnSearch" runat="server" OnClientClick="CallTheServer(value1)" Text="Search" CssClass="button" TabIndex="4" />
            </div>
        </div>
        
        <div class="layout_status"><span id="srchmessage" runat="server" style="color:Red;" class="layout_status">Status: </span></div>
        <div id="Code_search_footer" class="searchlayoutfooter" style="text-align:center"><hr/></div> 
 
                    
 <%--Fee Schedule Search Results--%>  
        <div id="FeeSched_search_return_header" class="searchlayoutheader">
            <asp:Label ID="lblSrchRet" runat="server" Font-Underline="True" Height="21px" Text="Search Results:" Width="117px" Font-Bold="True"></asp:Label>&nbsp;
        </div>
            <asp:Panel ID="pnlFeeSchedSearch" runat="server" Height="100px" Width="920px">
                <GridExtension:FrozenGridView ID="GridFeeSchedSearchResults" 
                            CssClass="gridview" 
                            runat="server" 
                            AutoGenerateColumns="False" 
                            Allowsorting="True" 
                            OnSelectedIndexChanging="GridFeeSchedSearchResults_SelectedIndexChanging" 
                            Height="100px"
                            Scrolling="Vertical">
                <Columns>
                    <asp:BoundField DataField="NDC_SCHEDULE" HeaderText="Fee Schedule"  />
                    <asp:BoundField DataField="NDC_SCHED_NAME" HeaderText="Fee Schedule Name" />
                    <asp:BoundField DataField="EFFECTIVE_DATE" HeaderText="Effective Date" DataFormatString="{0:MM/dd/yyyy}" HtmlEncode="False" >
                        <itemstyle horizontalalign="Center" />
                    </asp:BoundField>
                    <asp:BoundField DataField="TERM_DATE" HeaderText="Term Date" DataFormatString="{0:MM/dd/yyyy}" HtmlEncode="False" >
                        <itemstyle horizontalalign="Center" />
                    </asp:BoundField>
                    <asp:BoundField DataField="STATUS" HeaderText="Status" >
                        <itemstyle horizontalalign="Center" />
                    </asp:BoundField>
                    <asp:BoundField HeaderText="Last User Update" DataField="UPDATE_USER" >
                        <itemstyle horizontalalign="Center" />
                    </asp:BoundField>
                    <asp:CommandField ShowSelectButton="True" HeaderText="Select" >
                        <itemstyle horizontalalign="Center" />
                    </asp:CommandField>
                </Columns>
                <PagerSettings PageButtonCount="5" />
                </GridExtension:FrozenGridView>
            </asp:Panel>
        <div id="FeeSched_search_return_footer" class="searchlayoutfooter" style="text-align:center"><hr/>
        </div> 
    
    <%--Fee Schedule Maintenance--%>
    <asp:UpdatePanel ID="updpnlFeeSchedMaint" runat="server">
        <ContentTemplate>
        
        <%-- Fee Schedule Name Mask --%>
        <ajaxToolkit:MaskedEditExtender 
            ID="MaskedEditExtender3" 
            runat="server" 
            Mask="CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC" 
            Filtered="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz "
            PromptCharacter=" " 
            TargetControlID="txtFeeSchedName_Maint" 
            Enabled="True">
        </ajaxToolkit:MaskedEditExtender>
        
        <div id="FeeSched_Maint" class="searchlayoutheader">
            <asp:Label ID="lblGrpDetMaint" runat="server" Font-Underline="True" Height="21px" Text="Fee Schedule Maintenance:" Width="290px" Font-Bold="True"></asp:Label>
        </div>
        <div id="FeeSchedDetMaint_1" class="detaillayout">
            <asp:Label ID="lblCodeGrpID_Maint" runat="server" Text="Fee Schedule:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedID_Maint" runat="server" TabIndex="5" Enabled="False" ToolTip="Fee Schedule ID" CssClass="textbox_ndc_codegrpmaint"></asp:TextBox>
            <asp:Label ID="lblCodeGroupType_Maint" runat="server" Text="Effective Date:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedEffDate_Maint" runat="server" Enabled="False" TabIndex="7" ToolTip="Fee Schedule Effective Date" CssClass="textbox_ndc_codegrpmaint" ></asp:TextBox>
       </div>
 
        <div id="FeeSchedDetMaint_2" class="detaillayout">
            <asp:Label ID="lblCodeGrpName_Maint" runat="server" Text="Name:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedName_Maint" runat="server" TabIndex="6" Enabled="False" ToolTip="Fee Schedule Name" CssClass="textbox_ndc_codegrpmaint"></asp:TextBox>
            <asp:Label ID="lblCode_Maint" runat="server" Text="Term Date:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedTermDate_Maint" runat="server" ToolTip="Fee Schedule Term Date" TabIndex="8" Enabled="False" CssClass="textbox_ndc_codegrpmaint"></asp:TextBox>
        </div>
 
        <div id="FeeSchedDetMaint_3" class="detaillayout">
            <asp:Label ID="lblCodeGroupStatus1_Maint" runat="server" Text="Status:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedStatus_Maint" runat="server" Enabled="False" TabIndex="9" ToolTip="Fee Schedule Status" CssClass="textbox_ndc_codegrpmaint" ></asp:TextBox>
        </div>
 
        <div id="FeeSchedDetMaint_4" class="detaillayout">
            <div id="FeeSchedDetAction1" style="text-align:right">
                <asp:button ID="btnAddHdr" runat="server" Text="Add Detail" CssClass="button" TabIndex="12" Enabled="False" OnClick="btnAddHdr_Click"/>
            </div>
            <div id="FeeSchedDetAction2" style="text-align:right">
                <asp:button ID="btnNDCSched" runat="server" Text="NDC Schedule" CssClass="button" TabIndex="13" Enabled="False" OnClientClick="popupDistFeeSched();return false;" CausesValidation="False" />
            </div>
            <div id="FeeSchedDetAction3" style="text-align:right">
                <asp:button ID="btnNotes" runat="server" Text="Prior Notes" CssClass="button" TabIndex="14" Enabled="False" OnClientClick="popupFeeSchedNotes();return false;" CausesValidation="False" />
            </div>
        </div>
 
        <div id="FeeSchedDetMaint_5" class="detaillayout_s">
            <asp:Label ID="lblDesc" runat="server" Text="Description:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedDesc_Maint" runat="server" Width="535px" Enabled="False" TabIndex="10" MaxLength="255" ToolTip="Fee Schedule Description" CssClass="textbox_ndc_codegrpmaint"></asp:TextBox>
            <asp:Label ID="lblNotes" runat="server" Text="Notes:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedNote_Maint" runat="server" Width="535px" Height="60px" Enabled="False" TextMode="MultiLine" TabIndex="11" MaxLength="255" ToolTip="Fee Schedule Notes"></asp:TextBox>
        </div>
        <div id="FeeSched_detail_footer" class="searchlayoutfooter" style="text-align:center"><hr/></div> 
       
 <%--Fee Schedule Rule Maintenance--%>
    <div id="FeeScheduleRuleMaintHeader" class="searchlayoutheader">
    <asp:Label ID="Label1" runat="server" Font-Underline="True" Height="21px" Text="Fee Schedule Rule Maintenance:" Width="290px" Font-Bold="True"></asp:Label>
    </div>
        <div id="FeeScheduleRuleMaint1" class="detaillayout">
            <asp:Label ID="lblFeeSchedRuleCodeGrp" runat="server" Text="Code Group:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:DropDownList id="lstFeeSchedRuleCodeGrp_Maint" tabIndex="15" runat="server" AutoPostBack="True" Enabled="False" ToolTip="Fee Schedule Rule Code Group" CssClass="listbox_ndc_codegprmaint"></asp:DropDownList>
            <asp:Label ID="lblFeeSchedRuleEffDate" runat="server" Text="Rule Eff. Date:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedRuleEffDate_Maint" runat="server" ToolTip="Fee Schedule Rule Effective Date" TabIndex="18" Enabled="False" CssClass="textbox_ndc_codegrpmaint"></asp:TextBox>
       </div>
 
        <div id="FeeScheduleRuleMaint2" class="detaillayout">
            <asp:Label ID="lblFeeSchedRulePercent" runat="server" Text="Percentage:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedRulePrcnt_Maint" runat="server" TabIndex="16" Enabled="False" ToolTip="Fee Schedule Rule Percentage" CssClass="textbox_ndc_codegrpmaint"></asp:TextBox>
            <asp:Label ID="lblFeeSchedRuleTermDate" runat="server" Text="Rule Term Date:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:TextBox ID="txtFeeSchedRuleTermDate_Maint" runat="server" Enabled="False" TabIndex="19" ToolTip="Fee Schedule Rule Term Date" CssClass="textbox_ndc_codegrpmaint" ></asp:TextBox>
        </div>
 
        <div id="FeeScheduleRuleMaint3" class="detaillayout">
            <asp:Label ID="lblFeeSchedRuleSrcName" runat="server" Text="Source Name:" Width="108px" Height="21px" CssClass="label"></asp:Label>
            <asp:DropDownList id="lstFeeSchedRuleSrcName_Maint" tabIndex="17" runat="server" AutoPostBack="True" Enabled="False" ToolTip="Fee Schedule Rule Source Name" CssClass="listbox_ndc_codegprmaint"></asp:DropDownList>
        </div>
 
        <div id="FeeScheduleRuleMaint4" class="detaillayout">
            <div id="FeeScheduleRuleMaint5" style="text-align:right">
                <asp:button ID="btnAddRule" runat="server" Text="Add Rule" CssClass="button" TabIndex="11" Enabled="False" OnClick="btnAddRule_Click"/>
            </div>
            <div id="FeeScheduleRuleMaint6" style="text-align:right">
                <asp:button ID="btnReset" runat="server" Text="Reset" CssClass="button" TabIndex="12" Enabled="False" OnClick="btnReset_Click" OnClientClick="javascript:return confirm('Are you sure you want to reset the Fee Schedule Rule Maintenance area?')" />
            </div>
        </div>
    </div>
    <div>
        <div id="FeeScheduleRuleMaint7" class="searchlayoutfooter" style="text-align:center"><hr/>
            
        </div> 
        <asp:Panel ID="pnlFeeSchedRuleMaint" runat="server" Height="150px" Width="920px">
            <GridExtension:FrozenGridView ID="GridFeeSchedRuleMaintenance" 
                            CssClass="gridview" 
                            runat="server" 
                            AutoGenerateColumns="False" 
                            Allowsorting="True" 
                            PageSize="6" 
                            DataKeyNames="SequenceID,Exist,FeeSchedRuleID,FeeSchedRulePrecedence,FeeSchedRuleNDCSourceID" 
                            OnRowDeleting="GridFeeSchedRuleMaintenance_RowDeleting" 
                            Height="150px" 
                            Scrolling="Vertical">
                <Columns>
                    <asp:BoundField HeaderText="Code Group" DataField="FeeSchedRuleGRPId"  >
                        <itemstyle horizontalalign="Center" />
                        <headerstyle horizontalalign="Center" wrap="False" />
                    </asp:BoundField>
                    <asp:BoundField HeaderText="Percentage" DataField="FeeSchedRulePercent" DataFormatString="{0:F4}%" >
                        <itemstyle horizontalalign="Center" />
                        <headerstyle horizontalalign="Center" wrap="False" />
                    </asp:BoundField>
                    <asp:BoundField HeaderText="Source Name" DataField="FeeSchedRuleNDCSource" >
                        <itemstyle horizontalalign="Center" />
                        <headerstyle horizontalalign="Center" wrap="False" />
                    </asp:BoundField>
                    <asp:BoundField DataField="FeeSchedRuleEffDate" HeaderText="Rule Effective Date" DataFormatString="{0:MM/dd/yyyy}" >
                        <itemstyle horizontalalign="Center" />
                        <headerstyle horizontalalign="Center" wrap="False" />
                    </asp:BoundField>
                    <asp:TemplateField HeaderText="Rule Term Date">
                        <itemstyle horizontalalign="Center" />
                        <itemtemplate>
                            <asp:TextBox 
                                ID="txtGridTermDate" 
                                runat="server" 
                                Text='<%# DataBinder.Eval(Container.DataItem,"FeeSchedRuleTermDate") %>' 
                            />
       
                            <ajaxToolkit:MaskedEditExtender 
                                ID="MaskedEditTest" 
                                runat="server"
                                TargetControlID="txtGridTermDate"
                                Mask="99/99/9999"
                                MessageValidatorTip="true"
                                OnFocusCssClass="MaskedEditFocus"
                                OnInvalidCssClass="MaskedEditError"
                                MaskType="Date"
                                DisplayMoney="Left"
                                AcceptNegative="Left" 
                            /> 
                        </itemtemplate>
                    </asp:TemplateField>
                    <asp:TemplateField HeaderText="Delete">
                        <itemstyle horizontalalign="Center" />
                        <itemtemplate>
                            <asp:CheckBox id="chkDelete" runat="server" AutoPostBack="True" OnCheckedChanged="chkDelete_CheckedChanged" ></asp:CheckBox> 
                        </itemtemplate>
                    </asp:TemplateField>
                    <asp:TemplateField HeaderText="Remove" ShowHeader="False">
                        <itemstyle horizontalalign="Center" />
                        <itemtemplate>
                            <asp:ImageButton id="imgbtnRemove" runat="server" CausesValidation="False" ImageUrl="~/Images/Common/Common_grid_delete.gif" CommandName="Delete"></asp:ImageButton> 
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField HeaderText="Precedence">
                        <itemstyle horizontalalign="Center" />
                        <itemtemplate>
                            <asp:ImageButton id="imgbtnFeeSchedPrecUp" onclick="imgbtnFeeSchedPrecUp_Click" runat="server" Width="13px" Height="13px" ImageUrl="~/Images/Common/Common_grid_arrow_up.gif"></asp:ImageButton> <asp:ImageButton id="imgbtnFeeSchedPrecDown" onclick="imgbtnFeeSchedPrecDown_Click" runat="server" Width="13px" Height="13px" ImageUrl="~/Images/Common/Common_grid_arrow_down.gif"></asp:ImageButton> 
                        </itemtemplate>
                    </asp:TemplateField>
                </Columns>
                <PagerSettings PageButtonCount="5" />
            </GridExtension:FrozenGridView>
        </asp:Panel>
        
        <div><span id="feeschedrulemessage" style="color:Red;" runat="server" class="layout_status">Status: </span></div>
 
        <div id="Div10" class="searchlayoutfooter" style="text-align:center"><hr/></div> 
 
 <%--Fee Schedule User Actions --%>
        <div id="ActionHeader" class="actionlayoutheader">
            <div id="Action_Spacer1" class="actionlayout"></div>
            <div id="Action_Div1" class="actionlayout">
                <asp:Button ID="btnSubmitApproval" CssClass="actionbutton" runat="server" Text="Submit for Approval" TabIndex="20" Enabled="False" OnClick="btnSubmitApproval_Click" />    
            </div>
            <div id="Action_Div2" class="actionlayout">
                <asp:Button ID="btnApproval" CssClass="actionbutton" runat="server" Text="Approve"  TabIndex="21" Enabled="False" OnClick="btnApproval_Click" />
            </div>
            <div id="Action_Div3" class="actionlayout">
                <asp:Button ID="btnDisapprove" CssClass="actionbutton" runat="server" Text="Disapprove"  TabIndex="22" Enabled="False" OnClick="btnDisapprove_Click" />
            </div>
            <div id="Action_Div4" class="actionlayout">
                <asp:Button ID="btnCancel" CssClass="actionbutton" runat="server" Text="Cancel"  TabIndex="23" Enabled="False" OnClick="btnCancel_Click" />
            </div>
        </div>
        
            <%--Calendar 1--%>
          <asp:Panel ID="pnlCalendarDate1" runat="server" style="display:none">
          <asp:UpdatePanel ID="upCalendarDate1" runat="server">
            <ContentTemplate>
            <asp:Calendar 
                ID="calSelection1" runat="server" 
                SelectedDate="<%# DateTime.Today %>" 
                VisibleDate="<%# DateTime.Today %>"
                OnSelectionChanged="calSelection1_SelectionChanged" 
                DayNameFormat="Shortest" BackColor="White" BorderColor="#3366CC" BorderWidth="1px" CellPadding="1" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Height="200px" Width="220px">
                <SelectedDayStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />
                <TodayDayStyle BackColor="#99CCCC" ForeColor="White" />
                <SelectorStyle BackColor="#99CCCC" ForeColor="#336666" />
                <WeekendDayStyle BackColor="#ABDCF3" />
                <OtherMonthDayStyle ForeColor="#999999" />
                <NextPrevStyle Font-Size="8pt" ForeColor="Black" />
                <DayHeaderStyle BackColor="#D7E6F4" ForeColor="#336666" Height="1px" />
                <TitleStyle BackColor="#4168BD" BorderColor="#3366CC" BorderWidth="1px" Font-Bold="True"
                    Font-Size="10pt" ForeColor="Black" Height="25px" />
            </asp:Calendar>
          </ContentTemplate>
         </asp:UpdatePanel>
        </asp:Panel>
 
        <ajaxtoolkit:PopupControlExtender 
            ID="extCalendarDate1" 
            runat="server" 
            TargetControlID="txtFeeSchedTermDate_Maint" 
            PopupControlID="pnlCalendarDate1" 
            Position="Right" 
            CommitProperty="value">
        </ajaxtoolkit:PopupControlExtender>
        
         <%--Calendar 2--%>
        <asp:Panel ID="pnlCalendarDate2" runat="server" style="display:none">
          <asp:UpdatePanel ID="upCalendarDate2" runat="server" UpdateMode="Always">
            <ContentTemplate>
            <asp:Calendar 
                ID="calSelection2" runat="server" 
                SelectedDate="<%# DateTime.Today %>" 
                VisibleDate="<%# DateTime.Today %>"
                OnSelectionChanged="calSelection2_SelectionChanged" 
                DayNameFormat="Shortest" BackColor="White" BorderColor="#3366CC" BorderWidth="1px" CellPadding="1" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Height="200px" Width="220px">
                <SelectedDayStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />
                <TodayDayStyle BackColor="#99CCCC" ForeColor="White" />
                <SelectorStyle BackColor="#99CCCC" ForeColor="#336666" />
                <WeekendDayStyle BackColor="#ABDCF3" />
                <OtherMonthDayStyle ForeColor="#999999" />
                <NextPrevStyle Font-Size="8pt" ForeColor="Black" />
                <DayHeaderStyle BackColor="#D7E6F4" ForeColor="#336666" Height="1px" />
                <TitleStyle BackColor="#4168BD" BorderColor="#3366CC" BorderWidth="1px" Font-Bold="True"
                    Font-Size="10pt" ForeColor="Black" Height="25px" />
            </asp:Calendar>
          </ContentTemplate>
         </asp:UpdatePanel>
        </asp:Panel>
 
        <ajaxtoolkit:PopupControlExtender 
            ID="extCalendarDate2" 
            runat="server" 
            TargetControlID="txtFeeSchedEffDate_Maint" 
            PopupControlID="pnlCalendarDate2" 
            Position="Right" 
            CommitProperty="value" >
        </ajaxtoolkit:PopupControlExtender>
        
         <%--Calendar 3--%>
        <asp:Panel ID="pnlCalendarDate3" runat="server" style="display:none">
          <asp:UpdatePanel ID="upCalendarDate3" runat="server" UpdateMode="Always">
            <ContentTemplate>
            <asp:Calendar 
                ID="calSelection3" runat="server" 
                SelectedDate="<%# DateTime.Today %>" 
                VisibleDate="<%# DateTime.Today %>"
                OnSelectionChanged="calSelection3_SelectionChanged" 
                DayNameFormat="Shortest" BackColor="White" BorderColor="#3366CC" BorderWidth="1px" CellPadding="1" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Height="200px" Width="220px">
                <SelectedDayStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />
                <TodayDayStyle BackColor="#99CCCC" ForeColor="White" />
                <SelectorStyle BackColor="#99CCCC" ForeColor="#336666" />
                <WeekendDayStyle BackColor="#ABDCF3" />
                <OtherMonthDayStyle ForeColor="#999999" />
                <NextPrevStyle Font-Size="8pt" ForeColor="Black" />
                <DayHeaderStyle BackColor="#D7E6F4" ForeColor="#336666" Height="1px" />
                <TitleStyle BackColor="#4168BD" BorderColor="#3366CC" BorderWidth="1px" Font-Bold="True"
                    Font-Size="10pt" ForeColor="Black" Height="25px" />
            </asp:Calendar>
          </ContentTemplate>
         </asp:UpdatePanel>
        </asp:Panel>
 
        <ajaxtoolkit:PopupControlExtender 
            ID="extCalendarDate3" 
            runat="server" 
            TargetControlID="txtFeeSchedRuleEffDate_Maint" 
            PopupControlID="pnlCalendarDate3" 
            Position="Right" 
            CommitProperty="value" >
        </ajaxtoolkit:PopupControlExtender>
        
         <%--Calendar 4--%>
        <asp:Panel ID="pnlCalendarDate4" runat="server" style="display:none">
          <asp:UpdatePanel ID="upCalendarDate4" runat="server" UpdateMode="Always">
            <ContentTemplate>
            <asp:Calendar 
                ID="calSelection4" runat="server" 
                SelectedDate="<%# DateTime.Today %>" 
                VisibleDate="<%# DateTime.Today %>"
                OnSelectionChanged="calSelection4_SelectionChanged" 
                DayNameFormat="Shortest" BackColor="White" BorderColor="#3366CC" BorderWidth="1px" CellPadding="1" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Height="200px" Width="220px">
                <SelectedDayStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />
                <TodayDayStyle BackColor="#99CCCC" ForeColor="White" />
                <SelectorStyle BackColor="#99CCCC" ForeColor="#336666" />
                <WeekendDayStyle BackColor="#ABDCF3" />
                <OtherMonthDayStyle ForeColor="#999999" />
                <NextPrevStyle Font-Size="8pt" ForeColor="Black" />
                <DayHeaderStyle BackColor="#D7E6F4" ForeColor="#336666" Height="1px" />
                <TitleStyle BackColor="#4168BD" BorderColor="#3366CC" BorderWidth="1px" Font-Bold="True"
                    Font-Size="10pt" ForeColor="Black" Height="25px" />
            </asp:Calendar>
          </ContentTemplate>
         </asp:UpdatePanel>
        </asp:Panel>
 
        <ajaxtoolkit:PopupControlExtender 
            ID="extCalendarDate4" 
            runat="server" 
            TargetControlID="txtFeeSchedRuleTermDate_Maint" 
            PopupControlID="pnlCalendarDate4" 
            Position="Right" 
            CommitProperty="value" >
        </ajaxtoolkit:PopupControlExtender>
 
        </ContentTemplate>
        
        <Triggers>
            <asp:AsyncPostBackTrigger ControlID="GridFeeSchedSearchResults" EventName="SelectedIndexChanging" />
            <asp:AsyncPostBackTrigger ControlID="btnAddHdr" EventName="Click" />
            <asp:AsyncPostBackTrigger ControlID="btnAddRule" EventName="Click" />
            <asp:AsyncPostBackTrigger ControlID="btnReset" EventName="Click" />
        </Triggers>
    
    </asp:UpdatePanel>
             
</div> 
 
       
</asp:Content>

                                  
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:

Select allOpen in new window

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2008-08-26 at 10:09:12ID23679260
Tags

Visual Studio 2008 C#

,

IE 6, Firefox

Topics

Visual Studio

,

Asynchronous Javascript and XML (AJAX)

,

Microsoft Visual C#.Net

Participating Experts
1
Points
0
Comments
6

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. VS2005 User Control and AJAX
    Hello, I've created a user control in VS2005 (C#/ ASP.NET) that uses AJAX (Dojo toolkit in particular) to access an aspx file on the server that writes back to a textfile depending upon which value is clicked (captured via the onClick event in Javascript): dojo.io.bind({url:...
  2. AJAX UpdatePanel Trigger + MasterPage Senario
    Hey there guys, I am playing with AJAX and have a senario here that i have not found any resources for out there... I am running a MasterPage configuartion with Registered Web User Controls for the Header/Menu and footr of the site. Clicking a link on the header menu control...
  3. ASP.NET MasterPage and AJAX Components
    I want do build a web application of ASP.NET using the MasterPage and also the AJAX components like ScriptManager and UpdatePanel. I tried many samples but I still can not figure out how to change the content in or UpdatePanel either ContentPlaceHolder. The web app desing i...
  4. Ajax Toolkit - animationExtender and GridView
    Can someone give me example code of how to use Ajax with a field in GridView..?? I have VS2005 and I have install MS Ajax Toolkit. All is working fine. I have a gridview that is populated with data from a DB. One of the fields sometimes has 1000's of characters, it stre...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: burakiewiczPosted on 2008-08-26 at 11:42:34ID: 22317931

that has to do with ajax, anything with the update panel will not reflect the html changes

 

by: burakiewiczPosted on 2008-08-26 at 11:45:09ID: 22317961

like if you have a simple form  with an update panel a button and a label like the code below 1.
if you have an event that changes the label like this 2.
if you view the source before and after the click you will see
<span id="Label1">Label</span>
and not
<span id="Label1">nathan</span>

1.
<div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
         <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
            <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
        </ContentTemplate>
        </asp:UpdatePanel>
       
    </div>
 
 
2.
protected void Button1_Click(object sender, EventArgs e)
{
    Label1.Text = "nathan";
}

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:

Select allOpen in new window

 

by: JeffreymarcumPosted on 2008-08-26 at 11:51:29ID: 22318039

burakiewicz,
I'm not sure what you mean. The update panel renders the grid (with data) and controls fine. It just duplicates a bottom section and there is not any duplicate HTML in the IE source.  I've attached both a screenshot of the issue and the HTML source. I've increased the point value to 500 also


 
<!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_SSPTHEAD"><title>
	NDC Fee Schedule Maintenance
</title><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.ACTIONS.css" /><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.CONTROLS.css" /><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.GRID.css" /><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.LAYOUT.css" /><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.POPUP.css" /><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.MAIN.FOOTER.css" /><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.MAIN.MENU.css" /><link type="text/css" rel="stylesheet" href="../../Theme/SSPT.MAIN.STYLES.css" />
    
    <script type="text/javascript">
    
    var menuwidth = '165px' ;       // default menu width
    var menubgcolor = '#F5F5F5' ;   // menu bgcolor
    var disappeardelay = 250 ;      // menu disappear speed onMouseout (in miliseconds)
    var hidemenu_onclick = 'yes' ;  // hide menu when user clicks within menu 
 
    // Menu items for NDC
    var menu1=new Array()
    menu1.push('<a href=/Source/_NDC/CodeGrpMaint/NDCCodeMaint.aspx>Code Group Maintenance </a>') ;
    menu1.push('<div class=\"separator\"> </div>') ;
    menu1.push('<a href=/Source/_NDC/FeeSchedMaint/NDCFeeSchedMaint.aspx>Fee Schedule Maintenance</a>') ;
    menu1.push('<div class=\"separator\"> </div>') ;
    menu1.push('<div class=\"separator\"> </div>') ;
 
    // Menu items for Professional
    var menu2=new Array()
    menu2.push('<a href=/Source/_Professional/Sources/ProSources.aspx>Sources</a>') ;
    menu2.push('<div class=\"separator\"> </div>') ;
    menu2.push('<a href=/Source/_Professional/FeeSchedRules/ProFeeSchedRules.aspx>Fee Schedule Rules</a>') ;
    menu2.push('<div class=\"separator\"> </div>') ;
    menu2.push('<a href=/Source/_Professional/CodeGrps/ProCodeGrps.aspx>Code Groups</a>') ;
    menu2.push('<div class=\"separator\"> </div>') ;
    menu2.push('<a href=/Source/_Professional/Promotion/ProPromotion.aspx>Promotion</a>') ;
    menu2.push('<div class=\"separator\"> </div>') ;
    menu2.push('<div class=\"separator\"> </div>') ;
 
    // Menu items for Institutional
    var menu3=new Array()
    menu3.push('<a href=/Source/_Institutional/FeeSched/InstFeeSched.aspx>Fee Schedules</a>') ;
    menu3.push('<div class=\"separator\"> </div>') ;
    menu3.push('<a href=/Source/_Institutional/Flattening/FeeSchedFlat.aspx>Flattening</a>') ;
    menu3.push('<div class=\"separator\"> </div>') ;
    menu3.push('<a href=/Source/_Institutional/Promotion/FeeSchedFlatPromote.aspx>Promotion</a>') ;
    menu3.push('<div class=\"separator\"> </div>') ;
    menu3.push('<div class=\"separator\"> </div>') ;
 
    // Menu items for RPE
    var menu4=new Array()
    menu4.push('<a href=/Source/_RPE/ExclusionMaint/RPEMaint.aspx>Exclusion Maintenance</a>') ;
    menu4.push('<div class=\"separator\"> </div>') ;
    menu4.push('<div class=\"separator\"> </div>') ;
 
    // Menu items for Codes
    var menu5=new Array()
    menu5.push('<a href=/Source/_Codes/Associations/CodesAssoc.aspx>Associations</a>') ;
    menu5.push('<div class=\"separator\"> </div>') ;
    menu5.push('<a href=/Source/_Codes/Modifiers/CodesModifiers.aspx>Modifiers</a>') ;
    menu5.push('<div class=\"separator\"> </div>') ;
    menu5.push('<a href=/Source/_Codes/Procedures/CodesProcs.aspx>Procedures</a>') ;
    menu5.push('<div class=\"separator\"> </div>') ;
    menu5.push('<div class=\"separator\"> </div>') ;
 
    </script>
    
    <script type="text/javascript" language="javascript" src="/Source/JavaScript/SSPTMain/menu.js "></script>
 
<style type="text/css">
	.frozenTop { top:expression(this.offsetParent.scrollTop);position:relative;z-index:2; }
 
</style></head>
<body>
            
<div id="container">
    
    <div id="MenuBar">
	    <div class="c1">
		    <img id="ctl00_menubarl" src="../../Images/SSPTMain/SSPT.MAIN_menubarl.gif" style="height:87px;width:16px;border-width:0px;" />
        </div>
 
	    <div id="MenuBarBtns">
	        <div class="c1">  
                <img id="ctl00_bcbsfl_logo" src="../../Images/Common/Common_bcbsfl_logo.gif" style="border-width:0px;" />
            </div>
 
            <div class="c2" style="width: 166px">
                <b>Single Source Pricing Tool</b>
            </div>
 
	        <div class="c3">
		        <a onmouseover="dropdownmenu(this, event, menu1, '190px')" onmouseout="delayhidemenu()">NDC</a>
		        <div class="MenuBarSep"><img src="../../Images/SSPTMain/SSPT.MAIN_sep.gif" id="ctl00_sep1" width="4" height="52" /></div>
		        <a onmouseover="dropdownmenu(this, event, menu2, '190px')" onmouseout="delayhidemenu()">Professional</a>
		        <div class="MenuBarSep"><img src="../../Images/SSPTMain/SSPT.MAIN_sep.gif" id="ctl00_sep2" width="4" height="52" /></div>
		        <a onmouseover="dropdownmenu(this, event, menu3, '160px')" onmouseout="delayhidemenu()">Institutional</a>
		        <div class="MenuBarSep"><img src="../../Images/SSPTMain/SSPT.MAIN_sep.gif" id="ctl00_sep3" width="4" height="52" /></div>
		        <a onmouseover="dropdownmenu(this, event, menu4, '190px')" onmouseout="delayhidemenu()">RPE</a>
		        <div class="MenuBarSep"><img src="../../Images/SSPTMain/SSPT.MAIN_sep.gif" id="ctl00_sep4" width="4" height="52" /></div>
		        <a onmouseover="dropdownmenu(this, event, menu5, '150px')" onmouseout="delayhidemenu()">Codes</a>
		    </div>
	    </div>
    	
	    <div class="c1">
		    <img id="ctl00_menubarr" src="../../Images/SSPTMain/SSPT.MAIN_menubarr.gif" style="border-width:0px;" />
	    </div>
    </div>
    
    
    <div id="breadcrumbs" >
	    <div style="float:left;padding-left:10px;">
	        <span id="ctl00_SSPTSiteMapPath"><a href="#ctl00_SSPTSiteMapPath_SkipLink"><img alt="Skip Navigation Links" height="0" width="0" src="/Source/WebResource.axd?d=PIp51KWANF-NKQ-A1QBoLg2&amp;t=633540662399410197" style="border-width:0px;" /></a><span><a title="Single Source Pricing Tool" href="/Source/SSPTMain.aspx">Single Source Pricing Tool</a></span><span> &gt; </span><span><a title="NDC Maintenance">NDC</a></span><span> &gt; </span><span>Fee Schedule Maintenance</span><a id="ctl00_SSPTSiteMapPath_SkipLink"></a></span>
	    </div>
 	
	    <div style="float:right; width: 360px;">
            Current User:
            <b><span id="ctl00_lblCurrentUser">B7PX</span></b>
            || Authentication: 
            <b><span id="ctl00_lblAuthentication">UPDATE</span></b> 
            || Instance: 
            <b><span id="ctl00_lblDBInstance">DMTUC</span></b>  
	    </div>
    </div>
 
    
    
        <form name="aspnetForm" method="post" action="NDCFeeSchedMaint.aspx" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_SSPTMAIN_btnSearch')" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="ctl00_SSPTMAIN_ToolkitScriptManager1_HiddenField" id="ctl00_SSPTMAIN_ToolkitScriptManager1_HiddenField" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="dcW4uG9g1frpOVT7SQZw0WrblvdMYWoQWYHSvXvxw98+xyt42CNOnPqMqudOL/IhMvqjjA29Dt0/USi2Bm09r3KJOg1YUTCr/4Tgh7HLk0FUHSyN584MhHuJ4t2dladc8zZSb8kx0razp77MPrmUOBGilq/tSDsOUz97ItRv4Jg34+lNL6+9eMIeOdy8jUPkKKTLvwndlbtmbc4n1IEuM6+bYCVOCKwLgACmQe5xxkh/S0Sf4TJjLsYF8toqkAHzyjxGDyOG3QOjIljpzsMYtBvpH2kU/x844Gj3hrYqPi7jlM3a0nYr8YQ27kbHILk8RGD1axQ7EcrhO20/YaWrrZ3Kz5ka7ycksnVz6ThMtYwAXjNkcHH/hT8v1+HgI9aWg9Mz+xVUPh0x/bG2EZmNe5PSltF8V5JeQgDWgjseCruhehfE/7LYKVAahspns33Q2luvK71A+c2svNprFrCt0SNBIamhZ1BSknvgeS8Hn9LZqgZBFbjMpPdEoHoTreWkc152CeT3KeQsXJx6JHhDCurzqnmaUEe7e/IkFNat4DYLNdXDzGjL1CC1w5I2t+rd67hHfZNEQAxiXyit9Qq1v2Fg3UlFOaQHjn77fD8kQrHGGZYg3v7fWyba6ohppoPu/BNhwlwut2tr3ae3nvRARX57IikUCLvHKnj4b77GvpoxqEaGixSizutIHmoqK8xKlNl6rZpOOXHbeuY96gcy7F5qVAScOB3TiTt3jXW+fhFbBSywCDgP/fdcb0AKzwXUzZnGqOkoGUky8PK4qM+qGA9V/yZ/nE04il8NOH99jRpeMmFOdkSlr2juPID+GPTnlicY6SVkgKCTGpWz8Tic1+n+2zuGe8gd/LZhwMOR7QNYP7xRhAmoKfgsRiZjWlSDaoURliIDmnJ+oqppXAgo5G2Ozl+gU6rUPOqWfugdGhOrHD/P4gYkgMmBGMazoZ8dpl3rrUEmmFM5IbRY4xx4MSGaDplxjR3IDkfcA49zybLRT2cKNM9TRlDRAddWJl/L8gArHAH+IkXhZTtubYRQS/i6eQ1T30gwvj/YSXtrOBQyVyEpJfTnBcvhDv9ahNzhU7ItUk4LTDAwHr/xDPXxJX+0cssKm93Mpc3PgqEDMMrvnroR/I0AZBavz8ZqR3td1bSaVmVsjz/e2IqX0WJyj/wxL73D9Sr7QViKyJIr/joFUSSPdQ8cZRs104RXfOs+tUFwALCRa1OaWbv/3qKvVsaDjw2e0Lffub5Niz2lb5Wr/aUYFocyizk9B2PbklEctvUydVGA/bzinMH3nxBUGdlD0or9e+N3yLfmzH10aZD9TIGbG+SO3V247Rqzoi6mF/v2FiLDXK0ZeI66TFIMKdVxHA/nomGniN5+bVShZfVHFlJtx1xvSWWOT23kjc/T8SJo6oywG9vuxCQCgho054FYi3k8sMxUedvZXmJgUKNfVf0aXcHlnOK9AUJsODIEYnHzcoRLA/mP3Vko04A/QEumyOknoASJRT4MLff9Tz3i08nAMEP6FbG8OidjMXvhYFi/sUEH3OZhQluvB0GVP/IPd9y2l0N0ccbKcmzQw5mRFNbl67JszHUTKkqJpw3Akf95gJdKWJioC3aR2Oy/1F87ILoegev/otXPC9hcyx8weadqw/Ys7BPR/lB6EPTcjiwKL0ZFJDaBH15ZE7ioYrMI0j09xkNppTZK6J0G3g1P9cDApUdj0sugTREYSsttUuO1FOeUj4b8/dbvPvPjtDFEC+F0fLJSGr6QXRuC89gbhcHJyzY7oyurAw/rxCK36cMYG7Z737lurhtTaDeA3SWlo1Qvi1XMii7vF5hjTqf/kvFqjEO3CeJgQQEdtVWAfbti9P+utVRjsi0q6IYrE3Asw2YWcockX4pTQuUYK+2DGdRwxf6+iSAIl3xx55d+opQLHVSB36ooBuELvnn9It7xVCBwJdoEHKnbhhXLN4MgJ25v5Trt17TQ6GJcVXa6t8We3UlFi9zQANpz+Wr8EWwBuL3YQBjiRH2284fpgZrBWKWG78mTzzqWeC97uk/u8bh+e5myggQDvG+xv6bOXV7N/KFeImMie9Pvw6L1LhqEfDnzUEjMIQAz66n1ero0mOUkIGy3n4VgTXBZ5dz9dq3J1JLTYU9xtNyPgy0iqSaiQTWIKUtoASXo/P2EbOJEHxnJ/97QAFbvo0s9tUOG/qpIJw8Qb/scIURIpQJnmNXwYNdom0BUyAZBidrtkStLjg0xJvMvyhGoP2Pucurx7F/yCf9dBqgPydxCQk3oNlRmyxkvEP1Gb1lGrzhLOMxPDBDb4qpyXozXQadlNbXPGKKV02xgoxBw3Y8lK0VJlkF/rgjJC45VlrmvE0RAxyhbDIop4sgLtKpFVV7tD4jNfvD/Lj4OvJEDQnUTOYsxrOgLeH9S9iPF/3Q2f4Eq8yAFoyT32MwhPchS+DZ2uCPmmtX4gCD8UuCMU9xfZ+RjqQuB0PXG0yEFXMlGdAllD56DK5hPVOeXmDC91efJj8S0vuiPBADCMKmqyFD36nGwCZHIetwLuNmd55nuXdNJjQT0vzVgyUcaquThAUPU+4Y54NN6QkO+zt+lVWEm6YvLM/goukerdJR1YF3FJ/vrsyrUQr4Vz4aZmpla05pDyNhHp2B/FV8FcwULgLThFfj48oB9SrpYYMBL7K2gdhCq72IUXL93g3xB+mUMHS/zWr1XFj5O4qRV1NaLjdTTggAfgyQXMn0JgxYBVZ7gO8wuQXSEfol3Q6FIXNw2M+upbfI5Ag2WIsavGMaNuTdvrRufUjOWEiVEMjq+2MNayWGtyCwg7tSAPnz41+DAGGyd/PgVAs6MgELV+5QGsrkvrVrWlsRnROFWEUFdoHPBkaAd+WnwanCXjSCwXRB3aKmGrld9Zps6AWGfFmkcjIRjv3OPb0SKBJbOvplRPHrRq+CJ0mE0YFEXDPjtU3bBflpuRhwDP3f6DaqWDmMJ79sLuNtooHoVGIcknbDQfjTR9r1YtPQBOhfwbh6lRqOdg9RQ/44WBl8OX+hpm9vmuz1jO1/JRuY04tYoHRmFwxaAMkjnX8eDWeBu7nE9Ox3qb5EU2PYqLAhuERgbbRHn6hdO2SrkeYUA+2ZQeqQsVDYseNkAV3ON9VDoiCDYQMX7mjsr3AVk+j3pdmN7svEDV3h6wStHzNhPj6j3Ftc5EH12/fo4Ofqo9Wlb1MXWLaKpujZsdpN9m5emlz5vIF+968Z7gu06y50j1YRPcwH6LhhL6xR/wOPQEyVG8SIGQtEYqscf5I8VtQsIGn4qhyq6HSHEG2aNoDs6AMKjmnq/gB8tSz+EfFU+smKHtm1vSpMopIQNhDEyrqZnN2J3FCL56EgpEQQygeQl/icFdCq/wbZOAAwnAI3E6PYHkPVsl4e1qu/+AfypcOB8YRaqzauy5K46MkGgG88wS1J23ZF+Si6mpiMSExmpM/sPPINloKLbPzVZQdF7CpZPK+DgO09JJAgi2ad9LC2aefna/9JcNVl0lf/paBS3W3lajE5lv1YXzQX16JcGttfA7IlPlvJY/3Zux3LqMMH25E7SG2ZM6sL2YMuDLKOcWbgVwf0eIMZL9wuBA2FjtH2HLYRMCLzEF/jlgHHaWiLPg27zhEHptOtY9StX7TBvudZTkrph6uf2ync7I3gpyE5Yr7qkvNivb2TWwHk4TNLIFNFnuhaAvJ8KRsp1fSLOTH7fIfyqHKD4A/4iP+6/IE7xMy7iSRKTyktekzqawjJhNVLK4dwioZmWZ1qO2JcpSArT19rxjmn0xiB4tLX75ROz16NtL+DyJ9hazIPEmDeD8vWqBSFdtjJV3KoDyQQzCke4iNP1hylpnTcnSehZkAH/z2VbGxu+WdAvnxgfa2hSBI59qTrzB57rwJrYcuTYNJTyFxS1RD0cT3O97xtDNptuOJzwfvqiLd4ZsdNraIRQHlgtrpYrjLmxi9FzcHE9fv0UkXov8QXsA8beiQiIFwIabuoieVDpx10QL2EHfBajQeLhKa7EsBA23xuxmiFkme3aLf0QvJGJeC/foms6kXwHF8xnvm0rc/zpnToiIe3JCuYfB6HfKtfb3lXOZWcgBgrJvcaA3NnOE/FZuxix29CFA9OUts7aC0mLpqwqtOCX/Ns1JmMv+3JJOayWGSuK4ZZg3eftswiJHEwA7ImuZUTL3TvAZB/vUO7mec7nTQZPWEDu7cpbG0xv0G7Mje8DQ1s5T7zW9Utm7MRjCFfv16LsNQz+jEPFYdM/sJ4hQKC34oubAeTnjp1D2fjGuisebu7Vjr/heDmYShSbI51gkf/Cjed1eKvYMhQDEcBZFbd3p3ZM/TtNz8OOeTPTw0UWrprXVoJ3+Kpn5rFumMHY92oTSHA0qQAcwqZ8kn86gcHFtX6ukmJXiIAHdK5Nqg86jKY2q0qASYHTuuuV6AXokP9tWrhT8zc7vwJRK1onruw+WLUP4dyUtK5Hl7iDeR5pFk1xsQ25++W/ruDr8+XIFbqTbxCEPi4vNkmRl894WhydTdQvqKk1Nww3+vOK0rdRKsS1gGedH+zmftKGfxHbDmkHogKkrwBmDFkFu2/eWfz+5x/mknsQQt+RE4kIOo2zEaknWWneqUa9YaVhZJosHOxqUOz+xlmOmc/Zy64+ZVUBy+KkDRI7CLi1CDFZT5xUJf+3WJV47Cx7cWItNijMJoGcb0T9vhelgQEzf6ie4xcqIKDeCLoSHxd0OWSGfqI0Dk1dfEF4HtEkXRJKgaendTxJpZUjxaQrspFMpy7Yd+TT/Ajy/jAdbwZfsqdNlTkovTZNPhf5+MN99jaqch6M0F3P/MorhfB9so1mav4mXzGtot+tQVsmAJCfcheqpjGnkzFQ3NvEQyggAgRNQoBab7bWj1sI0TtDm3fpbaUAFRWsavLK9t408fkOC8juTrBU2BfLxktdDAEHS4+ah6cV8hXQ/n+mMPj6RwZLB0pH+1cJyjTpaXCLiF6XaAckONV+m2oRoCNxqQ92fpQf8gmQ9zEg+8vTcMtQhgUEiFHroIPYAIudYr3xMGm69GYWByDW/GzqZSRpSx8Xd3F0VZMM3QxOpx8YKJQ6919wQpQ9QtljJYM7Dvi6BcB43quDffcwkeh5fBRImnEAcE+CQRtUUiCBQ7JMC6WpkHf+nU5HP5kvtsoD4+c86IPL53UCnUBJW8gs8EQzxrzXx6utazlc1n/sjKJZDXHmHd9P6mt5U4vvk4A7N9s4QPmNXg4FP6Js426LlqrkULb8dAgogBf4dkRsNTCc2hVLqsvBrdvE7PCmlBdK/Sp3uQPD69dp/O1tf26I3VZR1/P83ajoI+9B0h5dORlDwEVGtEYK/i4WzR6XOl1coxYZpZmVdj8LgkrdbvsxszC+jf3jjDzrhJo8bIobR5Hh/dOEAylygx0p2LwYKycPEZtNSePZJf9taIpnXGxTXe2tT0xVYoUBRF9wCJIBsEka4hfhsfJuh5FdaQERPeLOR+m9SGFWoKy/lmQrPxVyHr2xhGikP6XfW/1jFlatv+GstQx2gWVI+1osc6TNKO6wnKbsSuYJMdIt70tZsakU8tH/L8CVrTCsXBO2Dw5OsHSPlf+70Iw294A7r0zBWuITg4gRmn/+qMipFQh+NbIUFg6K54D3PB/3JIhqx7tRq0XihU7qhq11xd29KIh2yXOw9zmW+wHqABixMX6R9i400rIbeWfU/Xb4er6bmefxTKMMQLQrJ5JrFh2tARASuwLpvzZYjrQQaAbTRaSo3Q/w0jhO3xkl8DE90Sr/UhxSKzwsvChHDAzanmf/xabGLLZCjJ9ACZLkyLEtxWnCXhGdVRENCpjr/KxU4zpUpKN5VrN14UpOF2IP/aHINZpsLsuraVlKXwav2MlyHhDstfYKT+3y7MP/QHRo6Goomj6/eEdCEvrp6UaMUjbtyH6LGUi1XzUsPIIEIP+QXTqz5xBFM8HlVbM8wMAveTwtG3o104FDZa2mnlyRFH7knu4Shp/p6eCYPvIwnNNnMl9lUdAIml8FNYZKJbxsjmudiEF07O4lhyE6fhA3rXfzWvc3ZSi7d4q6qfn4NxT9OxhKpYxmOuIpNTbPhnb57n4nkm7YPF8INNwdAk6ficg8p6Vz8t3RFGLavAyG4s6PKMvS0i+/MxjQ7yTK4LIbDx6aartI7jvnZJDZK9tqb+x4fYTMIhbYNtF5WJoYWGjlG7/0kbNWp92wsQZYdbeWcKstX3FMNe9wEZLNbgFYXZluSi1jBNUwdaJHAHG7XukI3WzOCGc5q4zUwtTm8/plw/XuP8vN8XRHv0t23Ox4E2TNxZHI7zaTbDWUqjJBsI/fRs9p2tqrHdK+uylF+Qacofy8sHE2BSEoa6wQbvuqKRMV0FbvCOQ4OpmFWrAHdnWoCeAOhmZ31bz2eUGEhdQAGp62twKyAomxJ13F+ullTazVfmSWjH9Cq7MePbNHdj4CPvItYucXLVp2/PGWZ8rqpKHg3v0CFEFkb4Ebr61GcWzKLNVEx5WWe/y4L5Fvb7Oxasxcen2f1f0nfg8prlqcsgTvL48U7R4BcvSFj/0bQVW2YuZ0lDAjBJoOvdCBaMXBzpFE+mux5qN9eKx6tNYRQg/Vi8J1Qy/pa+SknicG8tlprOW2NqpO8vOnM7Xy9R0IEEcDY0PART3kbM+8rIrWVGuScHl9Gpi5OgOkbkavEG2DdB9v5xXYGd8SmgHCP0+CpIsy0E1x3lokePa60Zz46qKU31/QbkNJC7iCaa2vy4DWhM60STb3c1wNmGrCcxZaemi/1ItA5ONEGnuzgEG3F731ma1/aor/r9sFuab8ZeCV7ORIwyaa9TMz3yjY2iazeQoyS2t3m2J/obaoaJRU9pmqdrYyFbOsqPUkwAzoS/8oP9Mkc+DigXjAL89SVr1JP+f74Yyd9cPe0XkkZUt9wLtEr4UsrDTPtSPfux6PnpA6c42OIRUy1KjQO3Rz+ZpgtlPuqZ2TmPLId8BE6II0biX/IG4cC8q3rEGaLQa4v7EeSCoTR4EDiaxpddHyfWuLzwUuYRv+wfS7eJk/6B2Ng1HpxcKWMC7FQeKrJAa/My0cFacdm6eXdQ2L49cOJg9p+tw6P0w+aYAagHAGAnBjcxIlyQ1mNP+ttJ+UTmeqVqqhvXjkBAbHHsru2OAUFBjiNe6QYhHTxK9WeytDXCREDUIBxcp3WjQkf3GPVbqA0YEQLU1WfGX81ovbCp1uyN754GFjbS3O0zWc+0PBUEhqom7fXnNQA2JefNjYHYaOx355XQQhNPhEYq8Z+S/gaVonYmAcVrRjmq/KXA5tk4i4pBHA3vyHe77tdEpWFdoyItnyn7BwbCRdHTWOt0HTqbUKjOXBjcOIZTZgio45nzAiBKUKjBkSyTj9kgOu07MZlYkYjcFlFf0pvRBI+5l0Z/WOOu99ZHNB1zo7bgY7oHDYHOGlAcVZuS7BgU9NVwW74Zdn+3Ji2Uw+bgb/40+OUU6vd/nhtELrPDat/T1IVzsB4cGmY9BeQG/cV5PWLJZTi2oxlnibW5HPd+n6z9QnpHTcCma819cOrvfEZClsYEkz7UDvyDTN1eBWsyliqeY9mD89e4mbV67/vJm8w/y/PzCFAxoH0HPA4ZQdsXdy2G529HGcW0ppnRoz58A8/H4rRZjX3dIXyUXHoR9TF8MxEpruw+zdWzJTQUBGpYkBlGj9vzj3pzx7+0+B4i58y4QvhS2O31/yJPCalMOxSzUauTbiQ8HaT7Efq6ny7e/hHY4QI1H2mnoM/atvh8StxJJsP0ID+45YEIql/5LzqObKfVhiLq2mo91UlmjflxC/9utcvaesuQhvmg/46/mF1JrKORXxsy2exxRE7GUcFS41byrTVgUCB1upaocjuHDQFeklxbL137QwA3VHAytx4TbFhOveoWrYfAwQyqmCP3GtqBqA2rxSv/2i1i16QBHBKcuumIsWTltCZfCjY7e9zuRMiPK91VTuNxg29RyJseNMxXoeuzlAfz5xOjqGQ6e4ZVVg2Dy7XxQRMXKldGhpUuo0ET21RG6oNfnCU2e27z0Ia6RkYM9gwwIBD9B1C62c4aXmRT6bpfgoxUvaLlQrwASQDWO44LTHDqYk/QuhHaRr8WVz5lKhH1cn8TvfCxFw594uqvxNfRWGUJ5ho1R8Cgfghnxp/exygTt0XqYZVX1y55xPh9UtzSTWvxo2QP4k4U77jU/gNYZPrtER5vR1oEkonhFMfazyq+jjYvrGBi7jU1tVwZTsHBG9ZjaPSySV9SJdy1HYT2Xb2nP8uyOjSEGuRM6r4ALe9NGgbk4+Tt1Cy+lVX2mq0N8ldrAYlSUXXEAIeh9QmjL5gZmNUBLzjCF2y+RI7nzVNvP9jgJGJhxCmNH1suUlmgSIu7si7dv/JmeKWMJM9+uowy+h86Y+2Z0VowE90MKkxDYTMtazqQW+mnLphePqpnI8aiRtDzS9Trjz5qoy24VBQIxJ+CJ9iRPGgzUTgb5gZyjf2+WUF5/M8WxWDIEbRG7BpOUrfZvvja4Yu0XjJo03nWlQ5GAx21anIFyWsWT+UD6lAVBzdR8G6L4BnOY118NelNODUyL7RPE/3P8rvXVtZj2UhxhK114OM9w/9osGGMUAmLnqkhQRVUSZvH831hDdQOEBJTHOEpgpwjC+ZXejSFlH/h7Jnequ9Uqk4vE=" />
</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="/Source/WebResource.axd?d=BNKfq-CWYLOCIOXtueJuGQ2&amp;t=633540662399410197" type="text/javascript"></script>
 
 
<script src="/Source/ScriptResource.axd?d=OqaG_KLKEFY00ex5OivhbRq4kAq-yIr8doGycl7vSuxpixQm8XnpsgOI8Bq6sUdILKuXBsB8DY4EyUh2R486Lkm0Q7i2Xu_zoOJJ6HA6vJ81&amp;t=633361066895889128" type="text/javascript"></script>
<script src="/Source/ScriptResource.axd?d=OqaG_KLKEFY00ex5OivhbRq4kAq-yIr8doGycl7vSuxpixQm8XnpsgOI8Bq6sUdILKuXBsB8DY4EyUh2R486LlAl2Kk8gA3BwLMFVk_wmSPcgVo-wp-9zB6HNp0vFIyJ0&amp;t=633361066895889128" type="text/javascript"></script>
<script src="/Source/_NDC/FeeSchedMaint/NDCFeeSchedMaint.aspx?_TSM_HiddenField_=ctl00_SSPTMAIN_ToolkitScriptManager1_HiddenField&amp;_TSM_CombinedScripts_=%3b%3bAjaxControlToolkit%2c+Version%3d1.0.11119.20010%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3af115bb7c-9ed9-4839-b013-8ca60f25e300%3a9ea3f0e2%3ae2e86ef9%3a1df13a87%3a182913ba%3abae32fb7%3ac4c00916%3a9e8e87e9%3a4c9865be%3aba594826%3ac76f1358" type="text/javascript"></script>
<script src="/Source/WebResource.axd?d=t7hMZCXQT4KvcgNCseP7iA2&amp;t=633540662399410197" type="text/javascript"></script>
<div>
 
	<input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
</div>
        <div id="master_content">
            <div id="master_contentplaceholder">
                
 
<script type="text/javascript">
var value1 = ""
 
// This function performs calls and postbacks to the server for the Search functionality
function CallTheServer(arg)
{
    var EQUALSAction = false;
    
    // ---- Search on Code Group (EQUALS ID Search) - call server CALLBACK method
    // Code Group ID
    var CodeGrpID = document.getElementById('ctl00_SSPTMAIN_txtFeeSchedID');
    if (CodeGrpID.value == '')
        {
            arg = '&'
        }
    else
        {
            //convert to uppercase
            arg = CodeGrpID.value.toUpperCase();
            EQUALSAction = true;
        }
 
    // Pending Approvals
    var lstPendAppr = document.getElementById('ctl00_SSPTMAIN_lstPendAppr');
    if (lstPendAppr.value == 'SELECT')
        {
            arg = arg + '\\&'
        }
    else
        {
            arg = arg + '\\' + lstPendAppr.value;
            EQUALSAction = true;
        }
 
    // Disapproved
    var lstDisAppr = document.getElementById('ctl00_SSPTMAIN_lstDisAppr');
    if (lstDisAppr.value == 'SELECT')
        {
            arg = arg + '\\&'
        }
    else
        {
            arg = arg + '\\' + lstDisAppr.value;
            EQUALSAction = true;
        }
    
    // Post the search parameters for callback or raise error
    if (EQUALSAction == true)
     {
        WebForm_DoCallback('__Page',arg,SearchReturn,"",SearchReturnError,false)
     }
    else
    {
        __doPostBack('__Page', 'Status: Please enter at least one valid search parameter')
    }
    
}
 
// This function handles the callback from the server
function SearchReturn(arg, context)
{
    // Search results not found
    if (arg == 0)
    {
        var retPrompt= confirm("Search results not found. Would you like to create a Fee Schedule?");
        
        if (retPrompt== true)
        {
            __doPostBack('__Page','NewFeeSched')
        }
    }
    
    // New Fee Schedule
    else if (arg == 1)
    {
        __doPostBack('__Page','EqualSearch')
    }
    
    // Error Message
    else 
    {
        __doPostBack('__Page', arg)
    }
   
}
    
// This function handles errors from from the callback from the server
function SearchReturnError(arg, context)
{
    srchmessage.innerText = 'Status: A search error has occured';
}
 
function popupFeeSchedNotes()
{
    var confirmWin = null;
    var arg;
    var FeeSchedID = document.getElementById('ctl00_SSPTMAIN_txtFeeSchedID_Maint');
    arg = FeeSchedID.value;
    var confirmURL = '/Source/_NDC/FeeSchedMaint/NDCPopup_FeeSchedNotes.aspx?NDCScheduleID=' + arg + '';
    confirmWin = window.open(confirmURL ,'anycontent','width=655,height=300,status');
}
 
function popupDistFeeSched()
{
    var confirmWin = null;
    var arg;
    var FeeSchedID = document.getElementById('ctl00_SSPTMAIN_txtFeeSchedID_Maint');
    arg = FeeSchedID.value;
    var confirmURL = '/Source/_NDC/FeeSchedMaint/NDCPopup_DistFeeSched.aspx?NDCScheduleID=' + arg + '';
    confirmWin = window.open(confirmURL ,'anycontent','width=940,height=300,status');
}
 
 
</script>
 
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$SSPTMAIN$ToolkitScriptManager1', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls(['tctl00$SSPTMAIN$updpnlFeeSchedMaint','tctl00$SSPTMAIN$upCalendarDate1','tctl00$SSPTMAIN$upCalendarDate2','tctl00$SSPTMAIN$upCalendarDate3','tctl00$SSPTMAIN$upCalendarDate4'], ['ctl00$SSPTMAIN$GridFeeSchedSearchResults','ctl00$SSPTMAIN$btnAddHdr','ctl00$SSPTMAIN$btnAddRule','ctl00$SSPTMAIN$btnReset'], [], 90);
//]]>
</script>
 
 
 
<div id="FeeSched_Search_Master">
    <div id="FeeSched_search_header" class="searchlayoutheader">
    <span id="ctl00_SSPTMAIN_lblSrchOpt" style="display:inline-block;font-weight:bold;text-decoration:underline;height:21px;width:117px;">Search Options:</span>
    </div>
        <div id="FeeSched_search_div1" class="searchlayout_feesched">
            <span id="ctl00_SSPTMAIN_lblCodeGrpID" class="label" style="display:inline-block;height:21px;width:108px;">Fee Schedule:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedID" type="text" maxlength="4" id="ctl00_SSPTMAIN_txtFeeSchedID" tabindex="1" title="Enter a Fee Schedule to search on" class="textbox_ndc_codegrpmaint" />&nbsp;
        </div>
        
        <div id="FeeSched_search_div2" class="searchlayout_feesched">
            <span id="ctl00_SSPTMAIN_lblPendAppr" class="label" style="display:inline-block;height:21px;width:108px;">Pending Approval:</span>
            <select name="ctl00$SSPTMAIN$lstPendAppr" id="ctl00_SSPTMAIN_lstPendAppr" tabindex="2" title="Select a Pending Fee Schedule" class="listbox_ndc_codegprmaint">
	<option selected="selected" value="SELECT">SELECT</option>
	<option value="0024">0024</option>
	<option value="00LW">00LW</option>
	<option value="024">024</option>
	<option value="029">029</option>
	<option value="2255">2255</option>
	<option value="2333">2333</option>
	<option value="5562">5562</option>
	<option value="5566">5566</option>
	<option value="5586">5586</option>
	<option value="5588">5588</option>
	<option value="8866">8866</option>
	<option value="9999">9999</option>
	<option value="CKW6">CKW6</option>
	<option value="CW04">CW04</option>
	<option value="CW07">CW07</option>
	<option value="CW79">CW79</option>
	<option value="CW80">CW80</option>
	<option value="DAN1">DAN1</option>
	<option value="EB01">EB01</option>
	<option value="EB02">EB02</option>
	<option value="EB12">EB12</option>
	<option value="K25">K25</option>
	<option value="TAS1">TAS1</option>
	<option value="TAS2">TAS2</option>
	<option value="ZZ01">ZZ01</option>
 
</select>
        </div>
    
        <div id="FeeSched_search_div3" class="searchlayout_feesched">
            <span id="ctl00_SSPTMAIN_lblDisapproved" class="label" style="display:inline-block;height:21px;width:108px;">Disapproved:</span>
            <select name="ctl00$SSPTMAIN$lstDisAppr" id="ctl00_SSPTMAIN_lstDisAppr" tabindex="3" title="Select a Disapproved Fee Schedule" class="listbox_ndc_codegprmaint">
	<option selected="selected" value="SELECT">SELECT</option>
	<option value="0233">0233</option>
	<option value="2455">2455</option>
	<option value="7777">7777</option>
	<option value="CAT2">CAT2</option>
	<option value="CKW3">CKW3</option>
	<option value="CKW4">CKW4</option>
	<option value="CKW8">CKW8</option>
	<option value="CW03">CW03</option>
	<option value="CW09">CW09</option>
	<option value="CW10">CW10</option>
	<option value="SUL2">SUL2</option>
	<option value="SUL3">SUL3</option>
 
</select>
        </div>
        
        <div id="FeeSched_search_div4" class="searchlayout_feesched">
            <div id="Code_search_div4_sub1" style="text-align:right">
            <input type="submit" name="ctl00$SSPTMAIN$btnSearch" value="Search" onclick="CallTheServer(value1);" id="ctl00_SSPTMAIN_btnSearch" tabindex="4" class="button" />
            </div>
        </div>
        
        <div class="layout_status"><span id="ctl00_SSPTMAIN_srchmessage" style="color:Red;" class="layout_status">Status: </span></div>
        <div id="Code_search_footer" class="searchlayoutfooter" style="text-align:center"><hr/></div> 
 
                    
   
        <div id="FeeSched_search_return_header" class="searchlayoutheader">
            <span id="ctl00_SSPTMAIN_lblSrchRet" style="display:inline-block;font-weight:bold;text-decoration:underline;height:21px;width:117px;">Search Results:</span>&nbsp;
        </div>
            <div id="ctl00_SSPTMAIN_pnlFeeSchedSearch" style="height:100px;width:920px;">
	
                <div id="__gvctl00_SSPTMAIN_GridFeeSchedSearchResults__div" style="overflow-x:visible;overflow-y:scroll;height:100px;position:relative;border-color:Black;border-width:0;border-style:solid;">
		<table class="gridview" cellspacing="0" rules="all" border="1" id="ctl00_SSPTMAIN_GridFeeSchedSearchResults" style="border-collapse:collapse;">
			<tr>
				<th class="frozenTop " scope="col">Fee Schedule</th><th class="frozenTop " scope="col">Fee Schedule Name</th><th class="frozenTop " scope="col">Effective Date</th><th class="frozenTop " scope="col">Term Date</th><th class="frozenTop " scope="col">Status</th><th class="frozenTop " scope="col">Last User Update</th><th class="frozenTop " scope="col">Select</th>
			</tr><tr>
				<td>029</td><td>test name</td><td align="center">02/22/2008</td><td align="center">12/31/9999</td><td align="center">Pending</td><td align="center">B7PX</td><td align="center"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$GridFeeSchedSearchResults','Select$0')">Select</a></td>
			</tr>
		</table>
	</div>
            
</div>
        <div id="FeeSched_search_return_footer" class="searchlayoutfooter" style="text-align:center"><hr/>
        </div> 
    
    
    <div id="ctl00_SSPTMAIN_updpnlFeeSchedMaint">
	
        
        
        <input type="hidden" name="ctl00$SSPTMAIN$MaskedEditExtender3_ClientState" id="ctl00_SSPTMAIN_MaskedEditExtender3_ClientState" />
        
        <div id="FeeSched_Maint" class="searchlayoutheader">
            <span id="ctl00_SSPTMAIN_lblGrpDetMaint" style="display:inline-block;font-weight:bold;text-decoration:underline;height:21px;width:290px;">Fee Schedule Maintenance:</span>
        </div>
        <div id="FeeSchedDetMaint_1" class="detaillayout">
            <span id="ctl00_SSPTMAIN_lblCodeGrpID_Maint" class="label" style="display:inline-block;height:21px;width:108px;">Fee Schedule:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedID_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedID_Maint" disabled="disabled" tabindex="5" title="Fee Schedule ID" class="textbox_ndc_codegrpmaint" />
            <span id="ctl00_SSPTMAIN_lblCodeGroupType_Maint" class="label" style="display:inline-block;height:21px;width:108px;">Effective Date:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedEffDate_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedEffDate_Maint" disabled="disabled" tabindex="7" title="Fee Schedule Effective Date" class="textbox_ndc_codegrpmaint" />
       </div>
 
        <div id="FeeSchedDetMaint_2" class="detaillayout">
            <span id="ctl00_SSPTMAIN_lblCodeGrpName_Maint" class="label" style="display:inline-block;height:21px;width:108px;">Name:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedName_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedName_Maint" disabled="disabled" tabindex="6" title="Fee Schedule Name" class="textbox_ndc_codegrpmaint" />
            <span id="ctl00_SSPTMAIN_lblCode_Maint" class="label" style="display:inline-block;height:21px;width:108px;">Term Date:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedTermDate_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedTermDate_Maint" disabled="disabled" tabindex="8" title="Fee Schedule Term Date" class="textbox_ndc_codegrpmaint" />
        </div>
 
        <div id="FeeSchedDetMaint_3" class="detaillayout">
            <span id="ctl00_SSPTMAIN_lblCodeGroupStatus1_Maint" class="label" style="display:inline-block;height:21px;width:108px;">Status:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedStatus_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedStatus_Maint" disabled="disabled" tabindex="9" title="Fee Schedule Status" class="textbox_ndc_codegrpmaint" />
        </div>
 
        <div id="FeeSchedDetMaint_4" class="detaillayout">
            <div id="FeeSchedDetAction1" style="text-align:right">
                <input type="submit" name="ctl00$SSPTMAIN$btnAddHdr" value="Add Detail" id="ctl00_SSPTMAIN_btnAddHdr" disabled="disabled" tabindex="12" class="button" />
            </div>
            <div id="FeeSchedDetAction2" style="text-align:right">
                <input type="submit" name="ctl00$SSPTMAIN$btnNDCSched" value="NDC Schedule" id="ctl00_SSPTMAIN_btnNDCSched" disabled="disabled" tabindex="13" class="button" />
            </div>
            <div id="FeeSchedDetAction3" style="text-align:right">
                <input type="submit" name="ctl00$SSPTMAIN$btnNotes" value="Prior Notes" id="ctl00_SSPTMAIN_btnNotes" disabled="disabled" tabindex="14" class="button" />
            </div>
        </div>
 
        <div id="FeeSchedDetMaint_5" class="detaillayout_s">
            <span id="ctl00_SSPTMAIN_lblDesc" class="label" style="display:inline-block;height:21px;width:108px;">Description:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedDesc_Maint" type="text" maxlength="255" id="ctl00_SSPTMAIN_txtFeeSchedDesc_Maint" disabled="disabled" tabindex="10" title="Fee Schedule Description" class="textbox_ndc_codegrpmaint" style="width:535px;" />
            <span id="ctl00_SSPTMAIN_lblNotes" class="label" style="display:inline-block;height:21px;width:108px;">Notes:</span>
            <textarea name="ctl00$SSPTMAIN$txtFeeSchedNote_Maint" rows="2" cols="20" id="ctl00_SSPTMAIN_txtFeeSchedNote_Maint" disabled="disabled" tabindex="11" title="Fee Schedule Notes" style="height:60px;width:535px;"></textarea>
        </div>
        <div id="FeeSched_detail_footer" class="searchlayoutfooter" style="text-align:center"><hr/></div> 
       
 
    <div id="FeeScheduleRuleMaintHeader" class="searchlayoutheader">
    <span id="ctl00_SSPTMAIN_Label1" style="display:inline-block;font-weight:bold;text-decoration:underline;height:21px;width:290px;">Fee Schedule Rule Maintenance:</span>
    </div>
        <div id="FeeScheduleRuleMaint1" class="detaillayout">
            <span id="ctl00_SSPTMAIN_lblFeeSchedRuleCodeGrp" class="label" style="display:inline-block;height:21px;width:108px;">Code Group:</span>
            <select name="ctl00$SSPTMAIN$lstFeeSchedRuleCodeGrp_Maint" id="ctl00_SSPTMAIN_lstFeeSchedRuleCodeGrp_Maint" disabled="disabled" tabindex="15" title="Fee Schedule Rule Code Group" class="listbox_ndc_codegprmaint">
		<option value="CKW Test">12000</option>
		<option value="test">12312</option>
		<option value="CW GCN Test">13000</option>
		<option value="Delete">20000</option>
		<option value="CKW Read Only">22222</option>
		<option value="eb01">244</option>
		<option value="test">4000</option>
		<option value="test">50000</option>
		<option value="test group">5544</option>
		<option value="TEST">CAT</option>
		<option value="CG1">CG1</option>
		<option value="CG10">CG10</option>
		<option value="CG11">CG11</option>
		<option value="011740">CG12</option>
		<option value="011741">CG13</option>
		<option value="011741">CG14</option>
		<option value="015164">CG15</option>
		<option value="015164">CG16</option>
		<option value="CG2">CG2</option>
		<option value="CG3">CG3</option>
		<option value="CG4">CG4</option>
		<option value="CG5">CG5</option>
		<option value="CG6">CG6</option>
		<option value="CG7">CG7</option>
		<option value="CG8">CG8</option>
		<option value="CG9">CG9</option>
		<option value="CGN1">CGN1</option>
		<option value="Cathy Test Flatten">CKW1</option>
		<option value="Change Name on Existing">CKW2</option>
		<option value="Cathy Test">CNDC1</option>
		<option value="CW">CW1</option>
		<option value="CW2">CW2</option>
		<option value="CW3">CW3</option>
		<option value="CW4">CW4</option>
		<option value="CW5">CW5</option>
		<option value="CW6 NDC">CW6</option>
		<option value="CW7 GCN">CW7</option>
		<option value="CW9 GCN">CW9</option>
		<option value="CWTESTNDC1">CWNDC1</option>
		<option value="eric test grp">EBTEST</option>
		<option value="EGB - 10959 only">EGB01</option>
		<option value="EGB - 24412 only">EGB02</option>
		<option value="EGB - 15189 only">EGB03</option>
		<option value="EGB - 2026 only">EGB04</option>
		<option value="EGB - 2616 only">EGB05</option>
		<option value="EGB - 7636 only">EGB06</option>
		<option value="EGB - 11688 only">EGB07</option>
		<option value="EGB - 60342 only">EGB08</option>
		<option value="EGB - 11510 only">EGB09</option>
		<option value="EGB - 22192 only">EGB10</option>
		<option value="EGB - 22187, 22164, 60015, 53252">EGB11</option>
		<option value="EGB - 22192, 11510, 60342, 11688">EGB12</option>
		<option value="EGB - 22187, 22164, 22192, 11510">EGB13</option>
		<option value="EGB - 24412, 15189, 2026, 2616">EGB14</option>
		<option value="EGB - 1 NDC">EGB15</option>
		<option value="EGB - 10 NDCs">EGB16</option>
		<option value="EGB - 50 NDCs">EGB17</option>
		<option value="EGB - 100 NDCs">EGB18</option>
		<option value="EGB - 200 NDCs">EGB19</option>
		<option value="EGB - 300 NDCs">EGB20</option>
		<option value="EGB - 400 NDCs">EGB21</option>
		<option value="EGB - 500 NDCs">EGB22</option>
		<option value="Cathy Test GCN Code Grp">G01</option>
		<option value="Cathy Test GCN">GCN1</option>
		<option value="EGB  10959 only">JJM01</option>
		<option value="Tom Sullivan's Test Group #1">SULLTST1</option>
		<option value="Tom Sullivan's Test Group #2">SULLTST2</option>
		<option value="Test Group of GCN Codes">TESTGCN1</option>
		<option value="Test Group of NDC Codes">TESTNDC1</option>
		<option selected="selected" value="SELECT">SELECT</option>
 
	</select>
            <span id="ctl00_SSPTMAIN_lblFeeSchedRuleEffDate" class="label" style="display:inline-block;height:21px;width:108px;">Rule Eff. Date:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedRuleEffDate_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedRuleEffDate_Maint" disabled="disabled" tabindex="18" title="Fee Schedule Rule Effective Date" class="textbox_ndc_codegrpmaint" />
       </div>
 
        <div id="FeeScheduleRuleMaint2" class="detaillayout">
            <span id="ctl00_SSPTMAIN_lblFeeSchedRulePercent" class="label" style="display:inline-block;height:21px;width:108px;">Percentage:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedRulePrcnt_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedRulePrcnt_Maint" disabled="disabled" tabindex="16" title="Fee Schedule Rule Percentage" class="textbox_ndc_codegrpmaint" />
            <span id="ctl00_SSPTMAIN_lblFeeSchedRuleTermDate" class="label" style="display:inline-block;height:21px;width:108px;">Rule Term Date:</span>
            <input name="ctl00$SSPTMAIN$txtFeeSchedRuleTermDate_Maint" type="text" id="ctl00_SSPTMAIN_txtFeeSchedRuleTermDate_Maint" disabled="disabled" tabindex="19" title="Fee Schedule Rule Term Date" class="textbox_ndc_codegrpmaint" />
        </div>
 
        <div id="FeeScheduleRuleMaint3" class="detaillayout">
            <span id="ctl00_SSPTMAIN_lblFeeSchedRuleSrcName" class="label" style="display:inline-block;height:21px;width:108px;">Source Name:</span>
            <select name="ctl00$SSPTMAIN$lstFeeSchedRuleSrcName_Maint" id="ctl00_SSPTMAIN_lstFeeSchedRuleSrcName_Maint" disabled="disabled" tabindex="17" title="Fee Schedule Rule Source Name" class="listbox_ndc_codegprmaint">
		<option value="01">Blue Book AWP Unit Price from FDB</option>
		<option selected="selected" value="SELECT">SELECT</option>
 
	</select>
        </div>
 
        <div id="FeeScheduleRuleMaint4" class="detaillayout">
            <div id="FeeScheduleRuleMaint5" style="text-align:right">
                <input type="submit" name="ctl00$SSPTMAIN$btnAddRule" value="Add Rule" id="ctl00_SSPTMAIN_btnAddRule" disabled="disabled" tabindex="11" class="button" />
            </div>
            <div id="FeeScheduleRuleMaint6" style="text-align:right">
                <input type="submit" name="ctl00$SSPTMAIN$btnReset" value="Reset" id="ctl00_SSPTMAIN_btnReset" disabled="disabled" tabindex="12" class="button" />
            </div>
        </div>
    </div>
    <div>
        <div id="FeeScheduleRuleMaint7" class="searchlayoutfooter" style="text-align:center"><hr/>
            
        </div> 
        <div id="ctl00_SSPTMAIN_pnlFeeSchedRuleMaint" style="height:150px;width:920px;">
		
            <div id="__gvctl00_SSPTMAIN_GridFeeSchedRuleMaintenance__div" style="overflow-x:visible;overflow-y:scroll;height:150px;position:relative;border-color:Black;border-width:0;border-style:solid;">
 
		</div>
        
	</div>
        
        <div><span id="ctl00_SSPTMAIN_feeschedrulemessage" style="color:Red;" class="layout_status">Status: </span></div>
 
        <div id="Div10" class="searchlayoutfooter" style="text-align:center"><hr/></div> 
 
 
        <div id="ActionHeader" class="actionlayoutheader">
            <div id="Action_Spacer1" class="actionlayout"></div>
            <div id="Action_Div1" class="actionlayout">
                <input type="submit" name="ctl00$SSPTMAIN$btnSubmitApproval" value="Submit for Approval" id="ctl00_SSPTMAIN_btnSubmitApproval" disabled="disabled" tabindex="20" class="actionbutton" />    
            </div>
            <div id="Action_Div2" class="actionlayout">
                <input type="submit" name="ctl00$SSPTMAIN$btnApproval" value="Approve" id="ctl00_SSPTMAIN_btnApproval" disabled="disabled" tabindex="21" class="actionbutton" />
            </div>
            <div id="Action_Div3" class="actionlayout">
                <input type="submit" name="ctl00$SSPTMAIN$btnDisapprove" value="Disapprove" id="ctl00_SSPTMAIN_btnDisapprove" disabled="disabled" tabindex="22" class="actionbutton" />
            </div>
            <div id="Action_Div4" class="actionlayout">
                <input type="submit" name="ctl00$SSPTMAIN$btnCancel" value="Cancel" id="ctl00_SSPTMAIN_btnCancel" disabled="disabled" tabindex="23" class="actionbutton" />
            </div>
        </div>
        
            
          <div id="ctl00_SSPTMAIN_pnlCalendarDate1" style="display:none">
		
          <div id="ctl00_SSPTMAIN_upCalendarDate1">
			
            <table id="ctl00_SSPTMAIN_calSelection1" cellspacing="0" cellpadding="1" title="Calendar" border="0" style="width:220px;height:200px;font-size:8pt;font-family:Verdana;color:#003399;border-width:1px;border-style:solid;border-color:#3366CC;background-color:White;border-collapse:collapse;">
				<tr><td colspan="7" style="background-color:#4168BD;border-color:#3366CC;border-width:1px;border-style:solid;height:25px;"><table cellspacing="0" border="0" style="color:Black;font-family:Verdana;font-size:10pt;font-weight:bold;width:100%;border-collapse:collapse;">
					<tr><td style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','V3104')" style="color:Black" title="Go to the previous month">&lt;</a></td><td align="center" style="width:70%;">August 2008</td><td align="right" style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','V3166')" style="color:Black" title="Go to the next month">&gt;</a></td></tr>
				</table></td></tr><tr><th align="center" abbr="Sunday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Su</th><th align="center" abbr="Monday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Mo</th><th align="center" abbr="Tuesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Tu</th><th align="center" abbr="Wednesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">We</th><th align="center" abbr="Thursday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Th</th><th align="center" abbr="Friday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Fr</th><th align="center" abbr="Saturday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Sa</th></tr><tr><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3130')" style="color:#999999" title="July 27">27</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3131')" style="color:#999999" title="July 28">28</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3132')" style="color:#999999" title="July 29">29</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3133')" style="color:#999999" title="July 30">30</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3134')" style="color:#999999" title="July 31">31</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3135')" style="color:#003399" title="August 01">1</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3136')" style="color:#003399" title="August 02">2</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3137')" style="color:#003399" title="August 03">3</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3138')" style="color:#003399" title="August 04">4</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3139')" style="color:#003399" title="August 05">5</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3140')" style="color:#003399" title="August 06">6</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3141')" style="color:#003399" title="August 07">7</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3142')" style="color:#003399" title="August 08">8</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3143')" style="color:#003399" title="August 09">9</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3144')" style="color:#003399" title="August 10">10</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3145')" style="color:#003399" title="August 11">11</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3146')" style="color:#003399" title="August 12">12</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3147')" style="color:#003399" title="August 13">13</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3148')" style="color:#003399" title="August 14">14</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3149')" style="color:#003399" title="August 15">15</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3150')" style="color:#003399" title="August 16">16</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3151')" style="color:#003399" title="August 17">17</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3152')" style="color:#003399" title="August 18">18</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3153')" style="color:#003399" title="August 19">19</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3154')" style="color:#003399" title="August 20">20</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3155')" style="color:#003399" title="August 21">21</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3156')" style="color:#003399" title="August 22">22</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3157')" style="color:#003399" title="August 23">23</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3158')" style="color:#003399" title="August 24">24</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3159')" style="color:#003399" title="August 25">25</a></td><td align="center" style="color:White;background-color:#99CCCC;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3160')" style="color:White" title="August 26">26</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3161')" style="color:#003399" title="August 27">27</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3162')" style="color:#003399" title="August 28">28</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3163')" style="color:#003399" title="August 29">29</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3164')" style="color:#003399" title="August 30">30</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3165')" style="color:#003399" title="August 31">31</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3166')" style="color:#999999" title="September 01">1</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3167')" style="color:#999999" title="September 02">2</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3168')" style="color:#999999" title="September 03">3</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3169')" style="color:#999999" title="September 04">4</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3170')" style="color:#999999" title="September 05">5</a></td><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection1','3171')" style="color:#999999" title="September 06">6</a></td></tr>
			</table>
          
		</div>
        
	</div>
 
        
        
         
        <div id="ctl00_SSPTMAIN_pnlCalendarDate2" style="display:none">
		
          <div id="ctl00_SSPTMAIN_upCalendarDate2">
			
            <table id="ctl00_SSPTMAIN_calSelection2" cellspacing="0" cellpadding="1" title="Calendar" border="0" style="width:220px;height:200px;font-size:8pt;font-family:Verdana;color:#003399;border-width:1px;border-style:solid;border-color:#3366CC;background-color:White;border-collapse:collapse;">
				<tr><td colspan="7" style="background-color:#4168BD;border-color:#3366CC;border-width:1px;border-style:solid;height:25px;"><table cellspacing="0" border="0" style="color:Black;font-family:Verdana;font-size:10pt;font-weight:bold;width:100%;border-collapse:collapse;">
					<tr><td style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','V3104')" style="color:Black" title="Go to the previous month">&lt;</a></td><td align="center" style="width:70%;">August 2008</td><td align="right" style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','V3166')" style="color:Black" title="Go to the next month">&gt;</a></td></tr>
				</table></td></tr><tr><th align="center" abbr="Sunday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Su</th><th align="center" abbr="Monday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Mo</th><th align="center" abbr="Tuesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Tu</th><th align="center" abbr="Wednesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">We</th><th align="center" abbr="Thursday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Th</th><th align="center" abbr="Friday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Fr</th><th align="center" abbr="Saturday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Sa</th></tr><tr><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3130')" style="color:#999999" title="July 27">27</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3131')" style="color:#999999" title="July 28">28</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3132')" style="color:#999999" title="July 29">29</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3133')" style="color:#999999" title="July 30">30</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3134')" style="color:#999999" title="July 31">31</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3135')" style="color:#003399" title="August 01">1</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3136')" style="color:#003399" title="August 02">2</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3137')" style="color:#003399" title="August 03">3</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3138')" style="color:#003399" title="August 04">4</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3139')" style="color:#003399" title="August 05">5</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3140')" style="color:#003399" title="August 06">6</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3141')" style="color:#003399" title="August 07">7</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3142')" style="color:#003399" title="August 08">8</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3143')" style="color:#003399" title="August 09">9</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3144')" style="color:#003399" title="August 10">10</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3145')" style="color:#003399" title="August 11">11</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3146')" style="color:#003399" title="August 12">12</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3147')" style="color:#003399" title="August 13">13</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3148')" style="color:#003399" title="August 14">14</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3149')" style="color:#003399" title="August 15">15</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3150')" style="color:#003399" title="August 16">16</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3151')" style="color:#003399" title="August 17">17</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3152')" style="color:#003399" title="August 18">18</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3153')" style="color:#003399" title="August 19">19</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3154')" style="color:#003399" title="August 20">20</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3155')" style="color:#003399" title="August 21">21</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3156')" style="color:#003399" title="August 22">22</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3157')" style="color:#003399" title="August 23">23</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3158')" style="color:#003399" title="August 24">24</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3159')" style="color:#003399" title="August 25">25</a></td><td align="center" style="color:White;background-color:#99CCCC;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3160')" style="color:White" title="August 26">26</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3161')" style="color:#003399" title="August 27">27</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3162')" style="color:#003399" title="August 28">28</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3163')" style="color:#003399" title="August 29">29</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3164')" style="color:#003399" title="August 30">30</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3165')" style="color:#003399" title="August 31">31</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3166')" style="color:#999999" title="September 01">1</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3167')" style="color:#999999" title="September 02">2</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3168')" style="color:#999999" title="September 03">3</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3169')" style="color:#999999" title="September 04">4</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3170')" style="color:#999999" title="September 05">5</a></td><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection2','3171')" style="color:#999999" title="September 06">6</a></td></tr>
			</table>
          
		</div>
        
	</div>
 
        
        
         
        <div id="ctl00_SSPTMAIN_pnlCalendarDate3" style="display:none">
		
          <div id="ctl00_SSPTMAIN_upCalendarDate3">
			
            <table id="ctl00_SSPTMAIN_calSelection3" cellspacing="0" cellpadding="1" title="Calendar" border="0" style="width:220px;height:200px;font-size:8pt;font-family:Verdana;color:#003399;border-width:1px;border-style:solid;border-color:#3366CC;background-color:White;border-collapse:collapse;">
				<tr><td colspan="7" style="background-color:#4168BD;border-color:#3366CC;border-width:1px;border-style:solid;height:25px;"><table cellspacing="0" border="0" style="color:Black;font-family:Verdana;font-size:10pt;font-weight:bold;width:100%;border-collapse:collapse;">
					<tr><td style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','V3104')" style="color:Black" title="Go to the previous month">&lt;</a></td><td align="center" style="width:70%;">August 2008</td><td align="right" style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','V3166')" style="color:Black" title="Go to the next month">&gt;</a></td></tr>
				</table></td></tr><tr><th align="center" abbr="Sunday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Su</th><th align="center" abbr="Monday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Mo</th><th align="center" abbr="Tuesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Tu</th><th align="center" abbr="Wednesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">We</th><th align="center" abbr="Thursday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Th</th><th align="center" abbr="Friday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Fr</th><th align="center" abbr="Saturday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Sa</th></tr><tr><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3130')" style="color:#999999" title="July 27">27</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3131')" style="color:#999999" title="July 28">28</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3132')" style="color:#999999" title="July 29">29</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3133')" style="color:#999999" title="July 30">30</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3134')" style="color:#999999" title="July 31">31</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3135')" style="color:#003399" title="August 01">1</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3136')" style="color:#003399" title="August 02">2</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3137')" style="color:#003399" title="August 03">3</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3138')" style="color:#003399" title="August 04">4</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3139')" style="color:#003399" title="August 05">5</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3140')" style="color:#003399" title="August 06">6</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3141')" style="color:#003399" title="August 07">7</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3142')" style="color:#003399" title="August 08">8</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3143')" style="color:#003399" title="August 09">9</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3144')" style="color:#003399" title="August 10">10</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3145')" style="color:#003399" title="August 11">11</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3146')" style="color:#003399" title="August 12">12</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3147')" style="color:#003399" title="August 13">13</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3148')" style="color:#003399" title="August 14">14</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3149')" style="color:#003399" title="August 15">15</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3150')" style="color:#003399" title="August 16">16</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3151')" style="color:#003399" title="August 17">17</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3152')" style="color:#003399" title="August 18">18</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3153')" style="color:#003399" title="August 19">19</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3154')" style="color:#003399" title="August 20">20</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3155')" style="color:#003399" title="August 21">21</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3156')" style="color:#003399" title="August 22">22</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3157')" style="color:#003399" title="August 23">23</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3158')" style="color:#003399" title="August 24">24</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3159')" style="color:#003399" title="August 25">25</a></td><td align="center" style="color:White;background-color:#99CCCC;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3160')" style="color:White" title="August 26">26</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3161')" style="color:#003399" title="August 27">27</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3162')" style="color:#003399" title="August 28">28</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3163')" style="color:#003399" title="August 29">29</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3164')" style="color:#003399" title="August 30">30</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3165')" style="color:#003399" title="August 31">31</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3166')" style="color:#999999" title="September 01">1</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3167')" style="color:#999999" title="September 02">2</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3168')" style="color:#999999" title="September 03">3</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3169')" style="color:#999999" title="September 04">4</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3170')" style="color:#999999" title="September 05">5</a></td><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection3','3171')" style="color:#999999" title="September 06">6</a></td></tr>
			</table>
          
		</div>
        
	</div>
 
        
        
         
        <div id="ctl00_SSPTMAIN_pnlCalendarDate4" style="display:none">
		
          <div id="ctl00_SSPTMAIN_upCalendarDate4">
			
            <table id="ctl00_SSPTMAIN_calSelection4" cellspacing="0" cellpadding="1" title="Calendar" border="0" style="width:220px;height:200px;font-size:8pt;font-family:Verdana;color:#003399;border-width:1px;border-style:solid;border-color:#3366CC;background-color:White;border-collapse:collapse;">
				<tr><td colspan="7" style="background-color:#4168BD;border-color:#3366CC;border-width:1px;border-style:solid;height:25px;"><table cellspacing="0" border="0" style="color:Black;font-family:Verdana;font-size:10pt;font-weight:bold;width:100%;border-collapse:collapse;">
					<tr><td style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','V3104')" style="color:Black" title="Go to the previous month">&lt;</a></td><td align="center" style="width:70%;">August 2008</td><td align="right" style="color:Black;font-size:8pt;width:15%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','V3166')" style="color:Black" title="Go to the next month">&gt;</a></td></tr>
				</table></td></tr><tr><th align="center" abbr="Sunday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Su</th><th align="center" abbr="Monday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Mo</th><th align="center" abbr="Tuesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Tu</th><th align="center" abbr="Wednesday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">We</th><th align="center" abbr="Thursday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Th</th><th align="center" abbr="Friday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Fr</th><th align="center" abbr="Saturday" scope="col" style="color:#336666;background-color:#D7E6F4;height:1px;">Sa</th></tr><tr><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3130')" style="color:#999999" title="July 27">27</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3131')" style="color:#999999" title="July 28">28</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3132')" style="color:#999999" title="July 29">29</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3133')" style="color:#999999" title="July 30">30</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3134')" style="color:#999999" title="July 31">31</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3135')" style="color:#003399" title="August 01">1</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3136')" style="color:#003399" title="August 02">2</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3137')" style="color:#003399" title="August 03">3</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3138')" style="color:#003399" title="August 04">4</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3139')" style="color:#003399" title="August 05">5</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3140')" style="color:#003399" title="August 06">6</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3141')" style="color:#003399" title="August 07">7</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3142')" style="color:#003399" title="August 08">8</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3143')" style="color:#003399" title="August 09">9</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3144')" style="color:#003399" title="August 10">10</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3145')" style="color:#003399" title="August 11">11</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3146')" style="color:#003399" title="August 12">12</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3147')" style="color:#003399" title="August 13">13</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3148')" style="color:#003399" title="August 14">14</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3149')" style="color:#003399" title="August 15">15</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3150')" style="color:#003399" title="August 16">16</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3151')" style="color:#003399" title="August 17">17</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3152')" style="color:#003399" title="August 18">18</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3153')" style="color:#003399" title="August 19">19</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3154')" style="color:#003399" title="August 20">20</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3155')" style="color:#003399" title="August 21">21</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3156')" style="color:#003399" title="August 22">22</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3157')" style="color:#003399" title="August 23">23</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3158')" style="color:#003399" title="August 24">24</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3159')" style="color:#003399" title="August 25">25</a></td><td align="center" style="color:White;background-color:#99CCCC;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3160')" style="color:White" title="August 26">26</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3161')" style="color:#003399" title="August 27">27</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3162')" style="color:#003399" title="August 28">28</a></td><td align="center" style="width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3163')" style="color:#003399" title="August 29">29</a></td><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3164')" style="color:#003399" title="August 30">30</a></td></tr><tr><td align="center" style="background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3165')" style="color:#003399" title="August 31">31</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3166')" style="color:#999999" title="September 01">1</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3167')" style="color:#999999" title="September 02">2</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3168')" style="color:#999999" title="September 03">3</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3169')" style="color:#999999" title="September 04">4</a></td><td align="center" style="color:#999999;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3170')" style="color:#999999" title="September 05">5</a></td><td align="center" style="color:#999999;background-color:#ABDCF3;width:14%;"><a href="javascript:__doPostBack('ctl00$SSPTMAIN$calSelection4','3171')" style="color:#999999" title="September 06">6</a></td></tr>
			</table>
          
		</div>
        
	</div>
 
        
 
        
</div>
             
</div> 
 
       
 
            </div>
        </div>
    
 
<script type="text/javascript">
//<![CDATA[
 
WebForm_InitCallback();WebForm_AutoFocus('ctl00_SSPTMAIN_txtFeeSchedID');Sys.Application.initialize();
Sys.Application.add_init(function() {
    $create(AjaxControlToolkit.MaskedEditBehavior, {"ClientStateFieldID":"ctl00_SSPTMAIN_MaskedEditExtender3_ClientState","CultureAMPMPlaceholder":"AM;PM","CultureCurrencySymbolPlaceholder":"$","CultureDateFormat":"MDY","CultureDatePlaceholder":"/","CultureDecimalPlaceholder":".","CultureName":"en-US","CultureThousandsPlaceholder":",","CultureTimePlaceholder":":","Filtered":"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ","Mask":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC","PromptCharacter":" ","id":"ctl00_SSPTMAIN_MaskedEditExtender3"}, null, null, $get("ctl00_SSPTMAIN_txtFeeSchedName_Maint"));
});
Sys.Application.add_init(function() {
    $create(AjaxControlToolkit.PopupControlBehavior, {"CommitProperty":"value","PopupControlID":"ctl00_SSPTMAIN_pnlCalendarDate1","Position":4,"dynamicServicePath":"/Source/_NDC/FeeSchedMaint/NDCFeeSchedMaint.aspx","id":"ctl00_SSPTMAIN_extCalendarDate1"}, null, null, $get("ctl00_SSPTMAIN_txtFeeSchedTermDate_Maint"));
});
Sys.Application.add_init(function() {
    $create(AjaxControlToolkit.PopupControlBehavior, {"CommitProperty":"value","PopupControlID":"ctl00_SSPTMAIN_pnlCalendarDate2","Position":4,"dynamicServicePath":"/Source/_NDC/FeeSchedMaint/NDCFeeSchedMaint.aspx","id":"ctl00_SSPTMAIN_extCalendarDate2"}, null, null, $get("ctl00_SSPTMAIN_txtFeeSchedEffDate_Maint"));
});
Sys.Application.add_init(function() {
    $create(AjaxControlToolkit.PopupControlBehavior, {"CommitProperty":"value","PopupControlID":"ctl00_SSPTMAIN_pnlCalendarDate3","Position":4,"dynamicServicePath":"/Source/_NDC/FeeSchedMaint/NDCFeeSchedMaint.aspx","id":"ctl00_SSPTMAIN_extCalendarDate3"}, null, null, $get("ctl00_SSPTMAIN_txtFeeSchedRuleEffDate_Maint"));
});
Sys.Application.add_init(function() {
    $create(AjaxControlToolkit.PopupControlBehavior, {"CommitProperty":"value","PopupControlID":"ctl00_SSPTMAIN_pnlCalendarDate4","Position":4,"dynamicServicePath":"/Source/_NDC/FeeSchedMaint/NDCFeeSchedMaint.aspx","id":"ctl00_SSPTMAIN_extCalendarDate4"}, null, null, $get("ctl00_SSPTMAIN_txtFeeSchedRuleTermDate_Maint"));
});
//]]>
</script>
</form>
    
    
    
    <div id="footer" style="left: 0px; top: 0px">
      <div class="fbl"> </div>
          <div class="fbc" style="left: 16px; top: 7px">
               <div style="margin-top:10px;">
                <b>
                    <a href="/Source/SSPTVersion.aspx">Application Version: <span id="ctl00_lblVersion">1.0.1.1</span></a>&nbsp;&nbsp;<span style="font-weight:normal"></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <a >Post Time: 8/26/2008 2:46:12 PM</a>&nbsp;&nbsp;<span style="font-weight:normal"></span>&nbsp;&nbsp;&nbsp;
                    <br />
                </b>
                    Blue Cross Blue Shield of Florida &copy. All rights reserved.
              </div>
          </div>
      <div class="fbr"> </div>
    </div>
</div>
 
 
</body>
</html>

                                              
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:

Select allOpen in new window

 

by: burakiewiczPosted on 2008-08-26 at 13:15:01ID: 22318936

what i was saying is you will not see an html change after page load if it is in an update panel like you add to more buttons to the panel, they would not show up in the html, but they would on the page,  are you adding these controls dynamically? I can see the duplicate panel and buttons

 

by: JeffreymarcumPosted on 2008-08-26 at 13:20:58ID: 22319003

The controls are not added dynamically. I've included a screenshot of the page prior to selecting any of the controls managed as ajax triggers. Also, I removed all the controls managed in the <Triggers section of the code and the page renders as it should. See code snippet for before / after. See the screenshot for the proper rendering

        <Triggers>
            <asp:AsyncPostBackTrigger ControlID="GridFeeSchedSearchResults" EventName="SelectedIndexChanging" />
            <asp:AsyncPostBackTrigger ControlID="btnAddHdr" EventName="Click" />
            <asp:AsyncPostBackTrigger ControlID="btnAddRule" EventName="Click" />
            <asp:AsyncPostBackTrigger ControlID="btnReset" EventName="Click" />
        </Triggers>
 
was changed to 
        <Triggers>
        </Triggers>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:

Select allOpen in new window

 

by: JeffreymarcumPosted on 2008-08-26 at 13:24:00ID: 22319032

here's the page fully rendered correctly

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...