Oi Diego,
O meu também está assim, porém não faz nenhum postback.
<asp:DropDownList ID="ddlDiretoria" runat="server" AutoPostBack="true" Width="300px" OnSelectedIndexChanged="ddlDiretoria_SelectedIndexChanged"></asp:DropDownList>
A chamada via javascript:
// Call openDialog method on button click or on page load
function OpenConfigurationDialog() {
var cloneModalContent = document.createElement('div');
//$("#lblConfirmationMessage").html(ConfirmationMessage);
cloneModalContent.innerHTML = document.getElementById('modal').innerHTML;
var options = {
html: cloneModalContent, // ID of the HTML tag
// or HTML content to be displayed in modal dialog
width: 600,
height: 680,
title: "Vcarteira",
allowMaximize: false,
showClose: false
};
SP.UI.ModalDialog.showModalDialog(options);
}
Já experimentei colocar inclusive um botão submit e ele também não disparou o postback.
A chamada da modal é feita via code behind:
this.Page.ClientScript.RegisterStartupScript(this.GetType(), ClientID, "ExecuteOrDelayUntilScriptLoaded(OpenConfigurationDialog, \"SP.js\");", true);