I am using VS 2005 Standard Edition.
I put two Ajax ValidatorCalloutExtenders on my page.
When I press the submit button the first ValidatorCalloutExtender shows up, but after I populate the field with a file and click submit button again, the second ValidatorCalloutExtender doesn't show up until I click into the second field.
Does anyone know what I am doing wrong?
I put two Ajax ValidatorCalloutExtenders on my page.
When I press the submit button the first ValidatorCalloutExtender shows up, but after I populate the field with a file and click submit button again, the second ValidatorCalloutExtender doesn't show up until I click into the second field.
Does anyone know what I am doing wrong?
Code:
<tr>
<td style="width: 49px">
File:</td>
<td style="width: 450px">
<asp:FileUpload ID="FileUpload1" runat="server" Width="344px" />
<asp:RequiredFieldValidator ID="FileUpload1RFV" runat="server" ErrorMessage="Required Field Missing" ControlToValidate="FileUpload1" Display="None"/>
<cc1:ValidatorCalloutExtender ID="FileUpload1VCE" runat="server" TargetControlID="FileUpload1RFV" />
</td>
</tr>
<tr>
<td style="width: 49px">
Desc:</td>
<td style="width: 450px">
<asp:TextBox ID="TextBox1" runat="server" Width="256px"></asp:TextBox>
<asp:RequiredFieldValidator ID="TextBox1RFV" runat="server" ErrorMessage="Required Field Missing" ControlToValidate="TextBox1" Display="None"/>
<cc1:ValidatorCalloutExtender ID="TextBox1VCE" runat="server" TargetControlID="TextBox1RFV" />
</td>
</tr>