Пожалуйста, помогите. У меня есть 2 ASPxPopupControls.Первый работает нормально.Второе содержимое ASPxPopupControl отображается в веб-форме, а не внутри всплывающего элемента управления.Это только первый контент, который появляется во всплывающем элементе управления.В чем может быть причина?Пожалуйста, смотрите изображения и код ниже.
image2 Image1
<table style="width:100%">
<tr>
<td>
<dx:ASPxPopupControl ID="popupPortalAppSettingConfigPage" runat="server" AllowDragging="true" CloseAction="CloseButton" Modal="true" PopupHorizontalAlign="WindowCenter" PopupVerticalAlign="WindowCenter" Width="467px" HeaderText="Edit">
<ContentCollection>
<dx:PopupControlContentControl runat="server" SupportsDisabledAttribute="True">
<table class="MasterPageContentPlaceHolder">
<tr>
<td class="auto-style4">Portal App Setting ID</td>
<td runat="server" id="tdPortalAppSettingID"></td>
</tr>
<tr>
<td class="auto-style4">Key Name:</td>
<td >
<dx:ASPxTextBox ID="txtKeyName" runat="server" MaxLength="100" Width="250px">
</dx:ASPxTextBox>
</td>
</tr>
<tr>
<td class="auto-style4">Key Value:</td>
<td >
<dx:ASPxTextBox ID="txtKeyValue" runat="server" MaxLength="100" Width="250px">
</dx:ASPxTextBox>
</td>
</tr>
<tr>
<td class="auto-style4">IsEncrypted</td>
<td>
<dx:ASPxComboBox ID="cmbIsEncrypted" runat="server" MaxLength="100" Width="250px">
<Items>
<dx:ListEditItem Text="TRUE" Value="1" />
<dx:ListEditItem Text="FALSE" Value="0" />
</Items>
</dx:ASPxComboBox>
</td>
</tr>
<tr>
<td class="auto-style4" colspan="2">
<dx:ASPxButton ID="btnAppContinue" runat="server" Text="Continue" RenderMode="Link" OnClick="btnAppContinue_Click">
<Image Url="~/images/GridIcons/arrow_right.png">
</Image>
</dx:ASPxButton>
</td>
</tr>
</table>
</dx:PopupControlContentControl>
</ContentCollection>
</dx:ASPxPopupControl>
</td>
</tr>
</table>
<table style="width:100%">
<tr>
<td>
<dx:ASPxPopupControl ID="popupAddPortalAppSettingConfig" runat="server" AllowDragging="true" CloseAction="CloseButton" Modal="true" PopupHorizontalAlign="WindowCenter" PopupVerticalAlign="WindowCenter" Width="467px" HeaderText="Add Portal App Setting">
<ContentCollection>
<dx:PopupControlContentControl runat="server" SupportsDisabledAttributes="True">
<table class="MasterPageContentPlaceHolder">
<tr>
<td class="auto-style4">Portal App Setting ID:</td>
<dx:ASPxTextBox ID="txtPortalAppSettingID" runat="server" MaxLength ="100" Width="250px">
</dx:ASPxTextBox>
</tr>
<tr>
<td class="auto-style4">Description:</td>
<td>
<dx:ASPxTextBox ID="txtDescription" runat="server" MaxLength="100" Width="250px">
</dx:ASPxTextBox>
</td>
</tr>
<tr>
<td class="auto-style4">Key Name:</td>
<td >
<dx:ASPxTextBox ID="txtAddKeyName" runat="server" MaxLength="100" Width="250px">
</dx:ASPxTextBox>
</td>
</tr>
<tr>
<td class="auto-style4">Key Value:</td>
<td >
<dx:ASPxTextBox ID="txtAddKeyValue" runat="server" MaxLength="100" Width="250px">
</dx:ASPxTextBox>
</td>
</tr>
<tr>
<td class="auto-style4">IsEncrypted</td>
<td>
<dx:ASPxComboBox ID="cmbAddEncryption" runat="server" MaxLength="100" Width="250px">
<Items>
<dx:ListEditItem Text="TRUE" Value="1" />
<dx:ListEditItem Text="FALSE" Value="0" />
</Items>
</dx:ASPxComboBox>
</td>
</tr>
<tr>
<td class="auto-style4" colspan="2">
<dx:ASPxButton ID="btnAddContinue" runat="server" Text="Continue" RenderMode="Link" OnClick="btnAppContinue_Click">
<Image Url="~/images/GridIcons/arrow_right.png">
</Image>
</dx:ASPxButton>
</td>
</tr>
</table>
</dx:PopupControlContentControl>
</ContentCollection>
</dx:ASPxPopupControl>
</td>
</tr>