设计表格中的错误

设计表格中的错误

本文介绍了设计表格中的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个列表框和一个面板..我想根据我在列表框下方显示的代码在列表框bt的右侧显示面板,所以
我的代码:-

 <   td      ="  style3"     align   =" 左"  > 
            <   asp:ListBox     CssClass   ="  lbutton-link"     ID   ="  lbcategory" 
 
                                      runat   ="  服务器"     ="  6"     AutoPostBack   =" 真"  
 
                     span>                                    onselectedindexchanged   ="  lbcategory_SelectedIndexChanged" > 
              <%-< asp:ListItem> ----- </  asp:ListItem  > -%>
            <   asp:ListItem    > 构造<  /asp:ListItem  > 
            <   asp:ListItem  > 油和gas <  /asp:ListItem  > 
           <   asp:ListItem  > 热情好客<  /asp:ListItem  > 
            <   asp:ListItem  > 医疗<  /asp:ListItem  > 
            <   asp:ListItem  > 服装<  /asp:ListItem  > 
            <   asp:ListItem  >  IT <  /asp:ListItem  > 
            <   asp:ListItem  > 海洋Ind <  /asp:ListItem  > 
            <   asp:ListItem  > 工程<  /asp:ListItem  > 
            <   asp:ListItem  > 汽车行业<  /asp:ListItem  > 
            <   asp:ListItem  > 打印行业<  /asp:ListItem  > 
            <   asp:ListItem  > 电源Plant <  /asp:ListItem  > 
            <   asp:ListItem  > 农业<  /asp:ListItem  > 
            <   asp:ListItem  > 银行业务和财务<  /asp:ListItem  > 
             <   asp:ListItem  > 办公室员工<  /asp:ListItem  > 

       <  /asp:ListBox  > 

                <   asp:Panel     ID   =" 面板构造"     runat   ="  服务器"    BackColor   ="  #99CCFF" 
 
                                                      BorderColor   =" #99CCFF"    宽度  = "  34%"    可见  =" 错误"  > 


                    <   asp:Repeater     ID   =" 收件箱"     runat   ="  服务器" > 


                    <   HeaderTemplate  > 
                    <  /HeaderTemplate  > 


                    <   ItemTemplate  > 
                        <   asp:CheckBox     ID   ="  CheckBox1"     runat   ="  服务器"   文本  ='  <%#DataBinder.Eval(Container.DataItem," 工作名称")%> '  / > 

                        <   br    / > 

                    <  /ItemTemplate  > 

                    <   FooterTemplate  > 
                    <  /FooterTemplate  > 

                    <  /asp:Repeater  > 
                <  /asp:Panel  > 

              <  /td  >  



所以请帮我该怎么做?????????????

 <  表格 > ; 
  <   tr  > 
     <   td  > 
       您的列表框在这里
     <  /td  > 
     <   td  > 
       您的面板在这里
     <  /td  > 
  <  /tr  > 
<  /table  >  



此UI在同一行级别的左侧将具有列表框,右侧将具有Panel.



i have one listbox and one panel..and i want to display panel right side of listbox bt according to my code it display below of listbox so
my code:-

<td class="style3" align="left">
            <asp:ListBox CssClass="lbutton-link" ID="lbcategory"

                runat="server" Rows="6" AutoPostBack="True"

                        onselectedindexchanged="lbcategory_SelectedIndexChanged">
              <%--<asp:ListItem >-----</asp:ListItem>--%>
            <asp:ListItem >Construction</asp:ListItem>
            <asp:ListItem>Oil and gas</asp:ListItem>
           <asp:ListItem>Hospitality </asp:ListItem>
            <asp:ListItem>Medical</asp:ListItem>
            <asp:ListItem>Garments</asp:ListItem>
            <asp:ListItem>IT</asp:ListItem>
            <asp:ListItem>Marine Ind</asp:ListItem>
            <asp:ListItem>Engineering</asp:ListItem>
            <asp:ListItem>Automobile Industry</asp:ListItem>
            <asp:ListItem>Printing Industry</asp:ListItem>
            <asp:ListItem>Power Plant</asp:ListItem>
            <asp:ListItem>Agriculture</asp:ListItem>
            <asp:ListItem>Banking and Finance </asp:ListItem>
             <asp:ListItem>Office Staff</asp:ListItem>

       </asp:ListBox>

                <asp:Panel ID="Panelconstruction" runat="server" BackColor="#99CCFF"

                        BorderColor="#99CCFF" Width="34%" Visible="False">


                    <asp:Repeater ID="inbox" runat="server">


                    <HeaderTemplate>
                    </HeaderTemplate>


                    <ItemTemplate>
                        <asp:CheckBox ID="CheckBox1" runat="server" Text='<%#DataBinder.Eval(Container.DataItem,"Job_Name")%>'/>

                        <br />

                    </ItemTemplate>

                    <FooterTemplate>
                    </FooterTemplate>

                    </asp:Repeater>
                </asp:Panel>

              </td>



so help me how can i do this???????

解决方案



这篇关于设计表格中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 08:56