I am using atlas updatepanel.But it not works in some pages only.If i invoke the Event i get the following error called
Error: element has no properties
Source File:http://localhost:1922/V1.5/WebResource.axd?d=76cvup_o6D5oq67FJRJ3lWFGXAOxalxDLDfhjEshy7rTmGT1wgioOjBBazTacAsXaJvLmuPSxaQ96h73WKTgYJPI_6yrvF_ItQBwDvIVAxY1&t=632894223780000000
Line: 10845
What is the error .& how to solve this problem...P
first the link u have provided is not working
try to copy and paste ur markup to help u
but any way try to check with me the syntax here:
<atlas:ScriptManager runat="srever" ID="scriptManager1" EnablePartialRendering="true"/>
<atlas:UpdatePanel runat="srever" ID="updatePanel1" Mode="Always" >
<ContentTemplate>
//here u add ur controls
</ContentTemplate>
</atlas:UpdatePanel>
or if u make it conditional mode
<atlas:ScriptManager runat="srever" ID="scriptManager1" EnablePartialRendering="true"/>
<atlas:UpdatePanel runat="srever" ID="updatePanel1" Mode="Conditional" >
<ContentTemplate>
//here u add ur controls
</ContentTemplate>
<Triggers>
// here u add ur triggers may be upon event or a change in property as u wish
</Triggers>
</atlas:UpdatePanel>
No comments:
Post a Comment