Tagged Questions
The icallbackeventhandler tag has no wiki summary.
2
votes
1answer
155 views
GetCallbackEventReference is firing Validators - How to Disable it
We have a server control that inherit from CompositeControl and implements IPostBackDataHandler, ICallbackEventHandler.
When we fire the CallBackEvent for the control (using ...
1
vote
0answers
79 views
How to render multiple controls one time via icallbackeventhandler method?
I am developing one user control which contains 4 dropdwonlists and I may need them select value change bind without post back, now i've met a question which is I can not render multiple controls one ...
1
vote
1answer
179 views
ICallbackEventHandler request every 1 second
I have code that fires an ICallbackEventHandler every 1000ms. When I run this code locally the data responds quick like every 1 second.
I then uploaded this on the server and sometimes the data ...
1
vote
1answer
425 views
Handle multiple requests with ICallbackEventHandler
Is there any way to make multiple requests to the callback function in asp.net when using the ICallbackEventHandler? I need the results for each result, however, when I iterate through and call the ...
1
vote
1answer
889 views
Conflicting RaiseCallbackEvents of ICallbackEventHandler when using a User Control on an ASP.Net Page
Hi and thanks for reading.
I am using the ICallbackEventHandler interface to do some client-side processing in an ASP.Net page (VS 2005). Everything works as expected except under the following ...
1
vote
2answers
518 views
ICallBackEventHandler does not update controls with form values
I want to use ICallBackEventHandler however when I use it to call back to the server I find that my form control objects don't have the latest form values. Is there a way to force populate the values ...
1
vote
1answer
446 views
ICallbackEventHandler and ViewState
Does anyone know if viewstate is available when using ICallbackEventHandler?
If not is there any work around to get it?
Thanks.
0
votes
1answer
77 views
WCF Asynchronous Call - Exception at eventhandler
WCF Asynchronous Call - Exception at eventhandler
I am making Asynchronous call to WCF method with eventhandler. I am getting an error at 'EventAddCallback' event and 'e.Error' shows the following ...
0
votes
1answer
147 views
Calling Response.RedirectLocation from within ICallbackEventHandler.RaiseCallbackEvent does nothing
We're attempting to make a redirect during a page callback. We have an aspx page that is implementing ICallbackEventHandler. Inside of the ICallbackEventHandler.RaiseCallbackEvent() event handler in ...
0
votes
0answers
83 views
Dynamically Loading UserControl with ICallbackEventHandler Implemented faces error
I am trying to load(LoadControl) a UserControl that uses ICallbackEventHandler to change some DropDownLists items dynamically.
Problem is that the Ajax result that comes to client contains the ...
0
votes
0answers
51 views
Using ICallbackEventHandler and UpdatePanel together in one page
I have got an usercontrol that uses ICallbackEventHandler to fill some comboBoxes . I want to use it in a page that have several updatepanel but not inside them.The user control and updatepanels are ...
0
votes
1answer
21 views
More than one CallServer Functions on same Page
I am facing a problem. I have 2 CallServer functions on the same page.
I want both of them called in succession. But they are not giving the expected output.
Here is what I tried. ServerMethods is ...
0
votes
0answers
19 views
UpdatePanel and ICallBack together
I want to use both updatepanel and ICallback together.
I have a button which is in updatepanel if it is clicked before icallback call it works but when i click it after the Icallback finished update ...
0
votes
0answers
42 views
ASP.NET ICallbackEventHandler
I am using ICallbackEventHandler, my callback to server is asynchronous.
The problem is when in my user control (which is using ICallbackEventHandler) callback is called user cannot navige from page. ...
0
votes
0answers
57 views
CoreSearchResults Webpart implementing ICallbackEventHandler Interface
I have created a custom webpart inheriting CoreSearchResults class. It works fine.
Since the search is called during Page Load so the rendering of Page is stopped till the search finds the relevant ...
0
votes
1answer
313 views
ASP.NET ICallbackEventHandler and ASP.net Ajax updatepanel
i would like to use ajax UpdatePanel and ICallbackEventHandler on one page. Each will handle individual part of page, they are not related to each one.
If I remove UpdatePanel, ICallbackEventHandler ...
0
votes
0answers
109 views
ICallbackEventHandler in Usercontrol within Umbraco Master page
I am trying to Implement an ICallbackEventHandler within a usercontrol sitting on an umbraco master page.
I basically just trying to get a tutorial i found here: ...
0
votes
0answers
196 views
raisecallbackevent wont fire
Im struglling with this. I have control that sends an email to an email account using asp.net 2.0. This email has a verification link that sends you back to the website. Now the problem is when the ...
0
votes
1answer
189 views
Override the RaiseCallbackEvent(string eventArgument) method from ICallbackEventHandler interface. Is it possible?
I need to implement the ICallbackEventHandler interface in C#, but I need slightly different logic...
The thing is, that the RaiseCallbackEvent method accepts string as input argument, but I need it ...
0
votes
1answer
197 views
Ajax File Upload unusal behaviour when using sessions
I have just implemented an Ajax File Upload control that uses a progress bar. I am a little confused. When i use the control on pages that dont use sessions, the progress bar with no problems will ...
0
votes
0answers
179 views
Using ICallbackEventHandler to Upload files
I found an article on how to upload files using ICallbackEventHandler, here is the article http://www.dotnetfunda.com/articles/article484-ajax-style-file-upload-.aspx. The problem is that when i want ...
0
votes
2answers
276 views
What is the difference between ICallBackEventHandler and HTTPHandler?
When we write our own custom HTTPHandlers aren't they behave the same way as ICallBackEventHanlder does? we use both to make ajax calls from our web page, isn't this correct? or my understanding ...