Click here to Skip to main content
15,907,687 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have report viewer inside of update panel when i run the application it is giving run time error

1-Microsoft JScript runtime error: 'this.m_clientController' is null or not an object
2-Microsoft JScript runtime error: 'parent.document.getElementById(...).ClientController' is null or not an object

and report is not loading.

if i did AsyncRendering="False" then it running but data is not showing correct format
pls help
Posted
Updated 10-Jan-12 0:47am
v2
Comments
S.P.Tiwari 10-Jan-12 6:56am    
updatepanel will not work in report.
thatraja 10-Jan-12 14:04pm    
No, it'll work if you set Trigger.
Amod Kumar Jaiswal 10-Jan-12 7:00am    
I have two dropdown button after 1 selection i don't want flick the page.how can i do this.
can u help me plz.

<tr>
<td align="left" valign="top" width="15%">
<asp:Label ID="lblSelectCustomer" runat="server" Text="Select Customer :" Font-Bold="true">
</td>
<td align="left" valign="top" width="85%">
<asp:DropDownList ID="ddlSelectCustomer" runat="server" OnSelectedIndexChanged="ddlSelectCustomer_SelectedIndexChanged"
AutoPostBack="true">

</td>
</tr>
<tr>
<td align="left" valign="top">
<asp:Label ID="lblSelectAudit" runat="server" Text="Select Audit :" Font-Bold="true">
</td>
<td align="left" valign="top">
<asp:DropDownList ID="ddlSelectAudit" runat="server" OnSelectedIndexChanged="ddlSelectAudit_SelectedIndexChanged"
AutoPostBack="true">

</td>
</tr>

1 solution

2) Use parent.document.getElementById(/*...*/), not parent.ocument.getElementById(...).

1) Who knows what your "this" is? It looks like you never added m_clientController to this object by the moment of use.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900