AJAX.NET triggers don't fire

T

Troy Donavan

The idea here is to get the user's country, state and city and when the
country is selected the selections for state would be updated and similarly
for state, when a state is selected the selections for city would be updated.
Unfortunately, none of the triggers are firing. Any idea why?

Here is the code in a page with three DropDownList controls.

<%@ Page Language="VB" MasterPageFile="~/TasiAsp.master"
AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default"
title="Untitled Page" %>
<asp:Content ID="ContentLogIn" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">

<asp:UpdatePanel ID="UPCountry" runat="server">
<ContentTemplate>


<asp:DropDownList ID="DDCountry" runat="server" style="z-index: 100;
left: 500px; position: absolute; top: 100px; width: 200">
</asp:DropDownList>

</ContentTemplate>
</asp:UpdatePanel>




<asp:UpdatePanel ID="UPState" runat="server">
<ContentTemplate>
<asp:DropDownList style="Z-INDEX: 100; LEFT: 500px; WIDTH: 200px; POSITION:
absolute; TOP: 130px" id="DDState" runat="server" __designer:wfdid="w4">
</asp:DropDownList>
</ContentTemplate>
<triggers>
<asp:AsyncPostBackTrigger ControlID="DDCountry"
EventName="TextChanged"></asp:AsyncPostBackTrigger>
</triggers>
</asp:UpdatePanel>





<asp:UpdatePanel ID="UPLocality" runat="server">
<ContentTemplate>
<asp:DropDownList style="Z-INDEX: 100; LEFT: 500px; WIDTH: 200px; POSITION:
absolute; TOP: 160px" id="DDLocality" runat="server" __designer:wfdid="w5">
</asp:DropDownList>
</ContentTemplate>
<triggers>
<asp:AsyncPostBackTrigger ControlID="DDState"
EventName="TextChanged"></asp:AsyncPostBackTrigger>
<asp:AsyncPostBackTrigger ControlID="DDCountry"
EventName="TextChanged"></asp:AsyncPostBackTrigger>
</triggers>
</asp:UpdatePanel>


</asp:Content>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top