Search

You searched for the word(s): userid:659830

Matching Posts

  • Re: Some, not all, clients unable to POST back to server

    Thanks, the one client in particular I am currently looking at is using IE6. I will check that they have javascript, but I'm pretty certain they do.
  • Some, not all, clients unable to POST back to server

    I have a pretty bog standard login page with a webusercontrol which does the login wrapped in an update panel. There are two textboxes, required field validators on the textboxes, and a linkbutton with a server side method. Some, but by no means all, clients report that they can't login. The IIS logs show that they GET the login page over SSL, and the WebResource and ScriptResource files to go with it (I assume all, not really sure), but then there are no POSTs logged from the clients back to
  • Re: queued asynchronous calls

    It works really well. You can also use args.get_postBackElement().id to test which object is sending the request out. I use that to determine if its a button, in which case I cancel any pending timer-based screen refreshes using prm.abortPostBack(); so that the user always gets a near-instant response. In addition I disable/grey out all the other buttons so that the user doesn't expect to be able to click anything else. Using prm.add_endRequest(EndRequestHandler); I then re-enable everything
  • Re: queued asynchronous calls

    Looks like I may have found the answer in the documentation (rtfm, eh!) for the framework: I put this after the script manager tag in the body. < script type ="text/javascript" language ="javascript"> Sys.WebForms.PageRequestManager.getInstance().add_initializeRequest(CheckStatus); function CheckStatus(sender, args) { var prm = Sys.WebForms.PageRequestManager.getInstance(); if (prm.get_isInAsyncPostBack()) { args.set_cancel( true ); } } </ script >
  • Re: queued asynchronous calls

    Thanks for the quick reply! I've tried using updateprogress to prevent this, but its still possible for persistent users to keep clicking on a button and end up posting a queued request, even if you use the updateprogress to place a panel over the button. The problem I have is that each request does an action on the server, so the queued requests have viewstate that is out of sync with the server information and exceptions get thrown. Still trying to work out how to fix this...
  • Re: queued asynchronous calls

    Did you find a solution to this?
  • Re: HoverMenu positioning issue in DragPanel

    I've raised this on Codeplex previously in December and it was closed as it was supposed to be fixed by another issue. I've re-raised it again as we're now well into RTM for the toolkit and I'm not sure if its been forgotten. If you want to vote on it, go to: http://www.codeplex.com/AtlasControlToolkit/WorkItem/View.aspx?WorkItemId=10311 Andy
    Posted to ASP.NET AJAX Control Toolkit (Forum) by AGBrown on 5/15/2007
  • Re: Discrete Animation

    Thanks again Ted, >> Essentially for ANY property in an animation (i.e. between the <Animation> and </Animation> tags) you can optionally append the word Script (like Height vs. HeightScript, Values vs. ValuesScript, etc.) and the contents can be an arbitrary JavaScript expression that will be eval'ed and assigned to the property before the animation is run each time. Wow! Now that's the nugget I had missed whilst trawling through all this stuff. That's going to change the way i
    Posted to ASP.NET AJAX Control Toolkit (Forum) by AGBrown on 5/11/2007
    Filed under: ajaxcontrolkit, Animation, AnimationExtender, JavaScript
  • Re: Discrete Animation

    Thanks Ted, I'd managed to work out the array syntax (by chance) but the bit I was missing was the name of the attribute - I had Values instead of ValuesScript. For future reference is there any way I could have worked out it was meant to be ValuesScript? Andy
    Posted to ASP.NET AJAX Control Toolkit (Forum) by AGBrown on 5/10/2007
  • Discrete Animation

    Can anyone supply me with a concrete example of the markup for the DiscreteAnimation in the toolkit? In particular I'm trying to set the class attribute of an element to one of two different strings over the course of the animation, and the toolkit animation reference hasn't helped me work out how to input the array at all. In addition; is there a definitive set of examples for the aspx markup for each animation rather than the animation reference document in the toolkit, which is for the javascript
    Posted to ASP.NET AJAX Control Toolkit (Forum) by AGBrown on 5/9/2007
    Filed under: "AJAX Toolkit", animation examples, Discrete Animation, DiscreteAnimation
Page 1 of 5 (42 items) 1 2 3 4 5 Next >