Click here to Skip to main content
16,009,176 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPopup control unwanted postback Pin
Statia12-Jun-07 2:08
Statia12-Jun-07 2:08 
AnswerRe: Popup control unwanted postback Pin
Not Active12-Jun-07 2:42
mentorNot Active12-Jun-07 2:42 
Questionjavascript doubt Pin
saravanan0512-Jun-07 0:59
saravanan0512-Jun-07 0:59 
AnswerRe: javascript doubt Pin
Sylvester george12-Jun-07 1:09
Sylvester george12-Jun-07 1:09 
AnswerRe: javascript doubt Pin
rreddy.V12-Jun-07 1:11
rreddy.V12-Jun-07 1:11 
GeneralRe: javascript doubt Pin
saravanan0512-Jun-07 1:35
saravanan0512-Jun-07 1:35 
AnswerRe: javascript doubt Pin
rreddy.V12-Jun-07 1:41
rreddy.V12-Jun-07 1:41 
AnswerRe: javascript doubt Pin
badgrs12-Jun-07 1:42
badgrs12-Jun-07 1:42 
AnswerRe: javascript doubt Pin
Christian Graus12-Jun-07 1:52
protectorChristian Graus12-Jun-07 1:52 
GeneralRe: javascript doubt Pin
Bajrang Singh13-Jun-07 5:11
Bajrang Singh13-Jun-07 5:11 
QuestionHow to Scroll while drag and drop in c# Pin
Sapan Roy12-Jun-07 0:52
Sapan Roy12-Jun-07 0:52 
AnswerRe: How to Scroll while drag and drop in c# Pin
Kushi Bobby12-Jun-07 1:44
Kushi Bobby12-Jun-07 1:44 
QuestionClarification On Static Member [modified] Pin
Rahul8312-Jun-07 0:47
Rahul8312-Jun-07 0:47 
AnswerRe: Clarification On Static Member Pin
rreddy.V12-Jun-07 1:18
rreddy.V12-Jun-07 1:18 
AnswerRe: Clarification On Static Member Pin
rreddy.V12-Jun-07 1:21
rreddy.V12-Jun-07 1:21 
GeneralRe: Clarification On Static Member Pin
Arun.Immanuel12-Jun-07 2:34
Arun.Immanuel12-Jun-07 2:34 
AnswerRe: Clarification On Static Member Pin
Arun.Immanuel12-Jun-07 2:51
Arun.Immanuel12-Jun-07 2:51 
GeneralRe: Clarification On Static Member Pin
Rahul8312-Jun-07 4:02
Rahul8312-Jun-07 4:02 
QuestionDropdown LIst Pin
sneha0112-Jun-07 0:38
sneha0112-Jun-07 0:38 
AnswerRe: Dropdown LIst Pin
Biju Sam12-Jun-07 0:50
Biju Sam12-Jun-07 0:50 
AnswerRe: Dropdown LIst Pin
_AK_12-Jun-07 0:53
_AK_12-Jun-07 0:53 
AnswerRe: Dropdown LIst Pin
koolprasad200312-Jun-07 0:54
professionalkoolprasad200312-Jun-07 0:54 
GeneralRe: Dropdown LIst Pin
sneha0112-Jun-07 0:57
sneha0112-Jun-07 0:57 
QuestionSys.Webforms.PageRequestManagerServerErrorException Pin
yogita charhate12-Jun-07 0:07
yogita charhate12-Jun-07 0:07 
Hi!

I’m getting on buttonclick event following exception
Sys.Webforms.PageRequestManagerServerErrorException
When updatepanel is used in page.
Do you have any idea to solve this exception.
I tried a lot ,I got some ways to solve it Like
1) set EnablePartialRendering to false, but it is of no use bcoz whole page is getting refreshed ,to solve this issue only I’m using updatepanel.
<asp:scriptmanager id="ScriptManager1" runat="server" enablepartialrendering="false">

2)Set EnableEventVaildation=”false” not possible bcoz server side validation wont happen.
3)disabling cache in Role Manger in web.config
i put following code snippet in web.config

<rolemanager enabled="true" cacherolesincookie="false">
<providers>
<add
name="SQLOLEDB"
="" type="System.Web.Security.SqlRoleProvider" connectionstringname="ConnectionString" applicationname="MClosetURL">


but problem didnt get solved

4) I used javascript to catch the exception at client side in script tag in aspx page , In this case I’m not getting exception but nothing is happening after that ,server side click is not getting fired

Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args)
{
if (args.get_error() != undefined)
{
var errorMessage;
if (args.get_response().get_statusCode() == '12031' || args.get_response().get_statusCode()=='12030' || args.get_response().get_statusCode() == '405')
{
args.set_errorHandled(true);


}
else
{


}
}
}







yog
hui gfgh kgdgrt njjn hjgkn

AnswerRe: Sys.Webforms.PageRequestManagerServerErrorException Pin
Venkatesh Mookkan12-Jun-07 1:41
Venkatesh Mookkan12-Jun-07 1:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.