在這裏我有一個DropDownList和按鈕確定,單擊時,它將啓用其他搜索文本框和搜索按鈕的可見性。另外,這取決於我選擇DropDownList項目。說,在我的DropDownList中,我有ProductName和ProductCode.I現在選擇ProductName旁邊的這個ddlist是按鈕確定。當我點擊確定按鈕時,控件如標籤,textboxName和buttonSearchName將出現在它的下面。 我該如何做到這一點?與確定按鈕的下拉列表將觸發搜索文本框和搜索按鈕,以在Web瀏覽器中可見
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>ProductName</asp:ListItem>
<asp:ListItem>ProductCode</asp:ListItem>
<asp:ListItem>Category</asp:ListItem>
<asp:ListItem>SellingPrice</asp:ListItem>
<asp:ListItem>Quantity</asp:ListItem>
<asp:ListItem>BrandName</asp:ListItem>
<asp:ListItem>ReOrderQty</asp:ListItem>
<asp:ListItem>ReOrderLevel</asp:ListItem>
<asp:ListItem>Ordered</asp:ListItem>
<asp:ListItem>Allocated</asp:ListItem>
<asp:ListItem>FreeQty</asp:ListItem>
</asp:DropDownList>
<asp:Button ID="btnOK" runat="server" onclick="btnOK_Click" Text="OK" />
<br />
ProductName<asp:TextBox ID="txtSearchProductname" runat="server"></asp:TextBox>
<asp:Button ID="btnSearchProductName" runat="server" Text="search"
onclick="btnSearchProductName_Click" />
<br />
是的,它應該是這樣的。只要它工作正常,就可以做到這一點。感謝,朋友。如何投票給你作爲這個答案?你當之無愧。 –
你會在我的答案旁邊的^ 0下找到一個空白的選中標記,如果你將鼠標懸停在它旁邊,它會說(接受本答案) – Ahmad