Hi All, I am developing one website. In That I want to call a popup window on dropdown_selectedIndexChaged. If I put That DropDown in an Anchor tag The Window Opens As Soon As I Click On DropDown Which I Dont Want. I Want that Popup Should Open After Selecting The Value Of That DropDown. So Please Help Me To Solve My Problem. And is there any way to write Anchor Tag in code behind and Call It On dropdown_selectedIndexChaged To Open A Popup. My Anchor tag Is Like This :
<a id="AA1" runat="server" class="thickbox" title="" href="InventoryQty.aspx?action=add&TB\_iframe=true&height=420&width=700">
<asp:DropDownList ID="InsertDDLItem1" runat="server"
AppendDataBoundItems="true"
DataTextField="ItemName"
DataValueField="ItemID"
AutoPostBack="true"
OnSelectedIndexChanged="InsertDDLItem1\_SelectedIndexChanged" Width="280px">
<asp:ListItem Selected="True" Value="0">Select ITem Type</asp:ListItem>
</asp:DropDownList>
</a>
Please Help Me To Solve My Problem. Thanks & Regards Sanket Patil :) :)
.