Hi folks, i've the following code:
<asp:UpdatePanel runat="server" ID="upPanelFoto">
<ContentTemplate>
<asp:FileUpload onChange="CaricaFileImmagine();" ID="FileUpload1" runat="server" BorderStyle="Solid" />
<asp:Button ID="btnCaricaImmagine" runat="server" Text="Carica" CssClass="Pulsanti" />
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="btnCaricaImmagine" />
</Triggers>
</asp:UpdatePanel>
In the same page i've some asp.net fieldvalidator (to validate other field). When i click "btnCaricaImmagine" that function never is called, and field validator appear on the screen...
How can i do to load my file ? Thanks