Hi!
I have a Problem with the autopostback function at sites using a MultiPage
control.
In HTML-view, if I place the code of the DropDownList above the code for the
MultiPage, everything workes right, but if I place it within the MultiPage
(in an PageView) or behind the MultiPage, the AutoPostback function dows not
work. (Site refresh, but no jump into EventProcedures and the Site forgets
the selected Item).
Dows anybody know the reason, or better.... a solution??
Thanks in advance.
Dennis George
Code sample (I don't wrote the styles):
With this it is ok:
<asp

ropDownList id="DropDownList1" style="<.....>" runat="server"
width="81px" Height="48px" AutoPostBack="True">
<asp:ListItem Value="1">1</asp:ListItem>
<asp:ListItem Value="2">2</asp:ListItem>
<asp:ListItem Value="3">3</asp:ListItem>
</asp

ropDownList>
<iewc:MultiPage id="MultiPage1" style="<......>" Height="522px">
<iewc

ageView id="Page1"></iewc

ageView>
<iewc

ageView id="Page2">2</iewc

ageView>
<iewc

ageView id="Page3">3</iewc

ageView>
<iewc

ageView id="Page4">4</iewc

ageView>
</iewc:MultiPage>
And So NOT:
<iewc:MultiPage id="MultiPage1" style="<......>" Height="522px">
<iewc

ageView id="Page1"></iewc

ageView>
<iewc

ageView id="Page2">2</iewc

ageView>
<iewc

ageView id="Page3">3</iewc

ageView>
<iewc

ageView id="Page4">4</iewc

ageView>
</iewc:MultiPage>
<asp

ropDownList id="DropDownList1" style="<.....>" runat="server"
width="81px" Height="48px" AutoPostBack="True">
<asp:ListItem Value="1">1</asp:ListItem>
<asp:ListItem Value="2">2</asp:ListItem>
<asp:ListItem Value="3">3</asp:ListItem>
</asp

ropDownList>
And so NOT:
<iewc:MultiPage id="MultiPage1" style="<......>" Height="522px">
<iewc

ageView id="Page1">
<asp

ropDownList id="DropDownList1" style="<.....>" runat="server"
width="81px" Height="48px" AutoPostBack="True">
<asp:ListItem Value="1">1</asp:ListItem>
<asp:ListItem Value="2">2</asp:ListItem>
<asp:ListItem Value="3">3</asp:ListItem>
</asp

ropDownList></iewc

ageView>
<iewc

ageView id="Page2">2</iewc

ageView>
<iewc

ageView id="Page3">3</iewc

ageView>
<iewc

ageView id="Page4">4</iewc

ageView>
</iewc:MultiPage>