I have a DropDownList object in my web page. When I click on it and select a different value, nothing happens, even though I have a function wired up to the SelectedIn
SelectedIn
For me answer was aspx page attribute, i added Async="true" to page attributes and this solved my problem.
<%@ Page Language="C#" MasterPageFile="~/MasterPage/Reports.Master"..... AutoEventWireup="true" Async="true" %>
This is the structure of my update panel