Home
»
Microsoft Dynamics AX
»
Afsar's Microsoft Dynamics AX knowledge arena
»
Dynamics AX EP timeout issue
Dynamics AX EP timeout issue
About
About Afsar's Microsoft Dynamics AX knowledge arena
Badges
Options
RSS for posts
Related Posts
Redirecting in EP user control to download a file
by
Anonymous
on
10 Sep 2009
0
comments
Using jQuery in EP
by
ChristofDC
on
22 Jan 2011
0
comments
How to set focus on the asp.net textbox in AxPopup form?
by
Anonymous
on
21 Oct 2009
0
comments
View More
Dynamics AX EP timeout issue
Muhammad Afsar Khan
15 May 2012 3:36 PM
Comments
0
Sometime for debugging or traversing large data in EP causing an issue of timeout, we can increase the timeout by setting the AsyncPostBackTimeout for AJAX which was causing the timeout. Here is the code which we can write in Page_Load event:
protected
void
Page_Load(
object
sender,
EventArgs
e)
{
ScriptManager
scripts =
ScriptManager
.GetCurrent(
this
.Page);
if
(scripts !=
null
)
{
scripts.AsyncPostBackTimeout = 800;
// 800 seconds
}
}
$core_v2_language.FormatString($core_v2_language.GetResource('Blog_PostQuestionAnswerView_CommentsCountFormatString'), $post.CommentCount)
Read the complete post at
mafsarkhan.blogspot.com/.../dynamics-ax-ep-timeout-issue.html