ListBox

patrick

Well-known member
Joined
Dec 5, 2021
Messages
251
Programming Experience
1-3
Hello.
I want to edit the source so that it comes to this location.


aa.png



Currently on the source

C#:
                    <div class="content_table_box1 div_Width grid_outer_line_td" style="text-align: center; border-top: 2px solid #1b409b; height: 610px;">
                                                        <asp:UpdatePanel ID="UpdatePanel7" runat="server">
                                                            <ContentTemplate>

                                                                <asp:ListBox ID="listAssign" runat="server" Height="550px" Width="500px" SelectionMode="Multiple" CssClass="list" style ="overflow:scroll"></asp:ListBox>
                                                                <asp:Button ID="btnDetach" runat="server" OnClick="btnDetach_Click" Text="->" Height="30px" Width="50px" text-align="center"/>
                                                                <asp:Button ID="btnAttach" runat="server" OnClick="btnAttach_Click" Text="<-" Height="30px" Width="50px" text-align="center"/>
                                                                <asp:ListBox ID="listNoAssign" runat="server" Height="550px" Width="500px" SelectionMode="Multiple" CssClass="list" style ="overflow:scroll"></asp:ListBox>

                                                                <br> 
                                                              
                                                                <img src="../../image/Main/inquiry_dot.gif" width="4" height="5" align="absmiddle" />품번
                                                                <asp:DropDownList ID="ddlProdFlag" runat="server" AutoPostBack="true" Width="150px" Height="30px"></asp:DropDownList>
                                                                <asp:TextBox ID="numQty" runat="server" Width="50px" Style="text-align: center" Height="20px"></asp:TextBox>
                                                                <asp:Button ID="btnAdd" runat="server" OnClick="btnAdd_Click" Text="추가" Height="30px" Width="50px" />
                                                                <br/>

                                                            </ContentTemplate>                                                       

                                                        </asp:UpdatePanel>
                                                      
                                                    </div>



how to edit in source?

Please help me
 
Last edited by a moderator:
Unfortunately, that is not source code. That is markup.

Anyway what you need to do is do some research about HTML and CSS to figure out how to set the position of those buttons.
 

Latest posts

Back
Top Bottom