webform页面局部加载

注意:先写的代码块放到ajaxToolkit:TabPanel中时,只能写在后面,ID为TabPanel2里面的代码是后来写的,所以ID为TabPanel2要放到ID为TabPanel1的上面。否则会出现一个ID为TabPanel2没有放进去或者最为常见的认为是被挤下去了。

<ajaxToolkit:TabContainer ID="TabContainerDeal" runat="server" Height="250px" ActiveTabIndex="4"
                Width="980px" UseVerticalStripPlacement="false" VerticalStripWidth="50px" OnClientActiveTabChanged="ClientActiveTabChanged"
                ScrollBars="Both">
                <ajaxToolkit:TabPanel runat="server" ID="TabPanel2" HeaderText="客户信息">
                    <HeaderTemplate>
                        客户信息
                    </HeaderTemplate>
                    <ContentTemplate>
                        <table id="customerinfo">
                            <tr>
                                <td colspan="6" background="../images/tab_05.gif" style="border: solid #98FB98; border-width: 0px 1px 1px 0px;">
                                    <img src="../images/311.gif" width="16" height="20" /><asp:Label ID="Label5" runat="server"
                                        Text="客户信息"></asp:Label>&nbsp;&nbsp;
                                    <asp:Button ID="Refresh_CoumoterInfo" runat="server" Text=" 刷       新 " OnClick="Refresh_CoumoterInfo_Click"
                                        Width="85px" CausesValidation="False" UseSubmitBehavior="False" />
                                </td>
                            </tr>
                            <tr>
                                <td class="style12">
                                    <asp:Label ID="tit_custRealBal" runat="server">客户实际余额</asp:Label>
                                </td>
                                <td style="width: 195px">
                                    <asp:Label ID="lbl_custRealBal" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_custRealRmbBal" runat="server">客户实际余额人民币</asp:Label>
                                </td>
                                <td style="width: 188px">
                                    <asp:Label ID="lbl_custRealRmbBal" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_custRealUsdBal" runat="server">客户实际余额美元</asp:Label>
                                </td>
                                <td style="width: 172px">
                                    <asp:Label ID="lbl_custRealUsdBal" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style12">
                                    <asp:Label ID="tit_principal" runat="server">客户本金</asp:Label>
                                </td>
                                <td style="width: 195px">
                                    <asp:Label ID="lbl_principal" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_custInstResidualPrincipal" runat="server">客户分期剩余本金</asp:Label>
                                </td>
                                <td style="width: 188px">
                                    <asp:Label ID="lbl_custInstResidualPrincipal" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_custInstResidualBal" runat="server">客户分期剩余余额</asp:Label>
                                </td>
                                <td style="width: 172px">
                                    <asp:Label ID="lbl_custInstResidualBal" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="style12">
                                    <asp:Label ID="tit_custBlockCode" runat="server">客户层管制码</asp:Label>
                                </td>
                                <td style="width: 195px">
                                    <asp:Label ID="lbl_custBlockCode" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_vipName" runat="server">VIP名称</asp:Label>
                                </td>
                                <td style="width: 188px">
                                    <asp:Label ID="lbl_vipName" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_companyName" runat="server">公司名称</asp:Label>
                                </td>
                                <td style="width: 172px">
                                    <asp:Label ID="lbl_companyName" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style12">
                                    <asp:Label ID="tit_dept" runat="server">部门</asp:Label>
                                </td>
                                <td style="width: 195px">
                                    <asp:Label ID="lbl_dept" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_position" runat="server">职位</asp:Label>
                                </td>
                                <td style="width: 188px">
                                    <asp:Label ID="lbl_position" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_email" runat="server">邮箱</asp:Label>
                                </td>
                                <td style="width: 172px">
                                    <asp:Label ID="lbl_email" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="style12">
                                    <asp:Label ID="tit_usedCustFlag" runat="server">惯投客户</asp:Label>
                                </td>
                                <td style="width: 195px">
                                    <asp:Label ID="lbl_usedCustFlag" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_repayAmtSum" runat="server">委案期间累计还款金额</asp:Label>
                                </td>
                                <td style="width: 188px">
                                    <asp:Label ID="lbl_repayAmtSum" runat="server"></asp:Label>
                                </td>
                                <td class="style12">
                                    <asp:Label ID="tit_UpdateDate" runat="server">修改日期</asp:Label>
                                </td>
                                <td style="width: 172px">
                                    <asp:Label ID="lbl_UpdateDate" runat="server"></asp:Label>
                                </td>
                            </tr>
                        </table>
                    </ContentTemplate>
                </ajaxToolkit:TabPanel>
                <ajaxToolkit:TabPanel runat="server" ID="TabPanel1" HeaderText="案件信息">
                    <HeaderTemplate>
                        案件信息
                    </HeaderTemplate>
                    <ContentTemplate>
                        <table id="customers">
                            <tr>
                                <td colspan="6" background="../images/tab_05.gif" style="border: solid #98FB98; border-width: 0px 1px 1px 0px;">
                                    <img src="../images/311.gif" width="16" height="20" /><span class="STYLE4">浦发银行案件</span>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="lDeptName" runat="server">部门</asp:Label>
                                </td>
                                <td>
                                    <asp:Label ID="lblDeptName" runat="server"></asp:Label>
                                </td>
                                <td class="style3">
                                    <asp:Label ID="lBankName" runat="server">客户<asp:Image ID="imgState" runat="server"
                                        Height="1px" Width="16px" />
</asp:Label>
                                </td>
                                <td>
                                    <asp:Label ID="lblBankName" runat="server"></asp:Label>
                                </td>
                                <td class="style9">
                                    &nbsp;&nbsp;
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtCardNo" Width="130px" Visible="False"></asp:Label><asp:Label
                                        ID="lblMultiCard" runat="server"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="style11">
                                    <asp:Label ID="lAccountNo" runat="server">帐号</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 195px">
                                    <asp:Label runat="server" ID="txtAccountNo" Width="130px"></asp:Label>
                                </td>
                                <td class="style3">
                                    <asp:Label ID="lConsignDate" runat="server">委托日期</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 188px">
                                    <asp:Label runat="server" ID="txtConsignDate" Width="100%" Height="16px"></asp:Label>
                                </td>
                                <td class="style8">
                                    退案日期
                                </td>
                                <td>
                                    <asp:Label runat="server" ID="txtCaseRemark16" Width="172px" Height="17px"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="lDebtorName" runat="server">持卡人姓名</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 188px">
                                    <asp:Label runat="server" ID="txtName" Width="130px"></asp:Label>
                                </td>
                                <td class="style9">
                                    性别
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="lblSex"></asp:Label>
                                </td>
                                <td class="style8">
                                    <asp:Label ID="lIDCardNo" runat="server">证件号码</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 195px">
                                    <asp:Label runat="server" ID="txtIDCardNo" Width="130px"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="style11">
                                    手别
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtCaseRemark15" Width="90px" Height="17px"></asp:Label>
                                </td>
                                <td class="style9">
                                    逾期天数
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtdebttime" Width="90px" Height="17px"></asp:Label>
                                </td>
                                <td class="style8">
                                    币种
                                </td>
                                <td>
                                    <asp:Label runat="server" ID="lblCardType"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="lArrearageMoney" runat="server">欠款金额</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 188px">
                                    <asp:Label runat="server" ID="txtArrearageMoney" Width="130px"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="lGivebackMoney" runat="server">已还金额</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtGivebackMoney" Width="130px">0</asp:Label>
                                </td>
                                <td class="style8">
                                    <asp:Label ID="lNeedPayMoney" runat="server">欠款余额</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 195px">
                                    <asp:Label runat="server" ID="txtNeedPayMoney" Width="130px"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="style11">
                                    案件状态
                                </td>
                                <td class="style5">
                                    <asp:Label ID="lblCaseStatusName" runat="server" ForeColor="Red"></asp:Label>
                                </td>
                                <td class="style8">
                                    催收状态
                                </td>
                                <td class="ItemLeft" style="width: 195px">
                                    <asp:Label ID="lblStateName" runat="server" ForeColor="Red"></asp:Label>
                                </td>
                                <td class="style3">
                                    经办人
                                </td>
                                <td class="ItemLeft" style="width: 188px">
                                    <asp:Label ID="txtColuser" runat="server" Width="130px">0</asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="lConsignCode" runat="server">公司名</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 188px">
                                    <asp:Label runat="server" ID="txtConsignCode" Width="130px"></asp:Label>
                                </td>
                                <td class="style8">
                                    <asp:Label ID="lDebtorCompanyName" runat="server">工作单位</asp:Label>
                                </td>
                                <td class="ItemLeft" colspan="3">
                                    <asp:Label runat="server" ID="txtDebtorCompanyName" Width="98%"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="lCaseRemark7" runat="server">委案时逾期段</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 188px">
                                    <asp:Label runat="server" ID="txtCaseRemark7" Width="144px"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="lCaseRemark5" runat="server">委案金额(USD)</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtCaseRemark5" Width="130px"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="lBillDate" runat="server">账单日</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtBillDate" Width="130px"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="Label4" runat="server">Min Pay</asp:Label>
                                </td>
                                <td class="ItemLeft" style="width: 188px">
                                    <asp:Label runat="server" ID="txtCaseRemark9" Width="144px"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="Label6" runat="server">AMT_PRINCIPLE</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtPrincipal" Width="130px"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="Label8" runat="server">城市</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtCaseRemark14" Width="130px"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="lDebtorRegAddress" runat="server">户籍地址</asp:Label>
                                </td>
                                <td class="ItemLeft" colspan="3">
                                    <asp:Label runat="server" ID="txtDebtorRegAddress" Width="98%"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="Label1" runat="server">最后还款</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtLastPaymoney" Width="130px"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td class="style10">
                                    <asp:Label ID="lUpdatedRegAddress" runat="server">更新户籍</asp:Label>
                                </td>
                                <td class="ItemLeft" colspan="3">
                                    <asp:Label runat="server" ID="txtUpdatedRegAddress" Width="98%"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="Label3" runat="server">最后还款日</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtLastPayDate" Width="130px"></asp:Label>
                                </td>
                            </tr>
                            <tr class="alt">
                                <td class="style10">
                                    <asp:Label ID="lCaseRemark6" runat="server">催收备注</asp:Label>
                                </td>
                                <td class="ItemLeft" colspan="3">
                                    <asp:Label runat="server" ID="txtCaseRemark6" Width="98%"></asp:Label>
                                </td>
                                <td class="style9">
                                    <asp:Label ID="Label2" runat="server">邮箱</asp:Label>
                                </td>
                                <td class="style5">
                                    <asp:Label runat="server" ID="txtEmail" Width="130px"></asp:Label>
                                </td>
                            </tr>
                            <tr>
                                <td colspan="6">
                                </td>
                                <table>
                                    <tr>
                                        <td>
                                            <asp:GridView ID="gvCard" runat="server" Width="950px" Style="margin-right: 0px"
                                                Height="20px">
                                            </asp:GridView>
                                        </td>
                                    </tr>
                                </table>
                            </tr>
                        </table>
                    </ContentTemplate>
                </ajaxToolkit:TabPanel>
            </ajaxToolkit:TabContainer>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值