Dropdown auto post back event placed inside update panel is not firing in ie 10

Posted by Vpaidi under .NET Framework on 7/8/2014 | Points: 10 | Views : 8849 | Status : [Member] | Replies : 7
Hi Friends, iam facing the below problem.

Dropdown auto post back event which is placed inside update panel is not firing in ie 10 but working fine in ie 9 and ie 11.

when i run through code the same dropdown event is working in ie 10 browser. But when i deployed into the iis and acces the page dropdown event is not working.


if any one is faced and found the solution then ,Please help me out for this problem.




Responses

Posted by: Vuyiswamb on: 7/8/2014 [Member] [MVP] [Administrator] NotApplicable | Points: 25

Up
0
Down
Let me see the Defination of your Dropdown. Open IE10 and click F12 and select Console and try to work on it and there would be an Error copy and paste the error here.

Thank you for posting at Dotnetfunda
[Administrator]

Vpaidi, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Vpaidi on: 7/9/2014 [Member] Starter | Points: 25

Up
0
Down
in the console it is not showing any thing. It's blank.

Vpaidi, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Vuyiswamb on: 7/9/2014 [Member] [MVP] [Administrator] NotApplicable | Points: 25

Up
0
Down
Show me the defination of your dropdown

Thank you for posting at Dotnetfunda
[Administrator]

Vpaidi, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Vpaidi on: 7/10/2014 [Member] Starter | Points: 25

Up
0
Down
<asp:ScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release">
</asp:ScriptManager>
<table width="770" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>

<asp:UpdatePanel ID="UpdatePanel1" runat="server" EnableViewState="true" UpdateMode="Conditional">
<ContentTemplate>
<table border="0" cellpadding="1" cellspacing="0" width="100%">
<tr>
<td style="width: 50%">
<div id="divclientgnames" runat="server">
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<td style="width: 30%">
<asp:Label ID="lblclientgroupnames" runat="server" Style="font-weight: 700" Text="Client Group Name"></asp:Label>
</td>
<td align="left">
<asp:DropDownList ID="ddlclients" runat="server" DataTextField="ClientGroupName"
CssClass="inputformc" DataValueField="ClientGroupId" AutoPostBack="true" OnSelectedIndexChanged="ddlclients_SelectedIndexChanged">
</asp:DropDownList>
</td>
</tr>
</table>
</div>
</td>
<td>

Vpaidi, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Vuyiswamb on: 7/10/2014 [Member] [MVP] [Administrator] NotApplicable | Points: 25

Up
0
Down
You must add triggers

<asp:UpdatePanel ID="UpdatePanel1" runat="server" EnableViewState="true" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="ddlclients" />
</Triggers>
<ContentTemplate>



Thank you for posting at Dotnetfunda
[Administrator]

Vpaidi, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Vpaidi on: 7/10/2014 [Member] Starter | Points: 25

Up
0
Down
I have added the triggers which you mentioned below , but still post back event is not firing.

Any Help please.

Vpaidi, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Vuyiswamb on: 7/11/2014 [Member] [MVP] [Administrator] NotApplicable | Points: 25

Up
0
Down
I think i need to see this myself, please let me assist you via Teamviewer. my Gtalk is vuyiswamb

Thank you for posting at Dotnetfunda
[Administrator]

Vpaidi, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response