Search

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

Matching Posts

  • Re: update panel is not working with the validation.why??

    mwajda: I've been using the hotfix on production servers for about 3 months and it hasn't caused any problems. Also allowed me to rollback to validators included in the framework from the custom validators without any of the problems I was encountering ... As with any hotfix...apply caution and reason when deploying to production servers but no problems here....
  • Re: update panel is not working with the validation.why??

    Yes, the link is correct...there hasn't been much communication about it fixing validation problems but that was part of it's intention. Matt Gibbs (the same guy who provided the custom validators) also has a link about it on his blog: http://blogs.msdn.com/mattgi/archive/2007/05/12/validators-update-available.aspx
  • Re: update panel is not working with the validation.why??

    Actually, Microsoft released a hot fix that contains updates to enable the validator controls to work with the UpdatePanel several months ago. I think the intention is to send this down in a Windows update eventually. This will let you get rid of the custom implementation of the validators you are trying to use and use the ones included in the framework. Install this hotfix and go back to using the standard validators and let me know if it solves your problem. The Hotfix can be downloaded from the
  • Re: Validation within ASP.NET Ajax Update Panel.

    Actually, Microsoft released a hot fix that contains updates to enable the validator controls to work with the UpdatePanel several months ago. I think the intention is to send this down in a Windows update eventually. This will let you get rid of the custom implementation of the validators you are trying to use and use the ones included in the framework. Install this hotfix and go back to using the standard validators and let me know if it solves your problem. You can download it here: http://connect
    Posted to ASP.NET AJAX UI (Forum) by kylen on 2/20/2008
  • Re: TabControl Problem - Sys.InvalidOperationException: owner must be set before intialize

    It appears that the Tab Panels are loaded before the Tab Container initializes which is a problem when a large number of controls are embedded within a tabPanel or hosted via (via SSL) (slower connections), which are both common to my Application. Problem is unique to client browser being IE6 and host being Windows Server 2003. I haven't been able to reproduce it when using IE7. To solve the problem: http://www.codeplex.com/AtlasControlToolkit/WorkItem/View.aspx?WorkItemId=13553 I hope this will
    Posted to ASP.NET AJAX Control Toolkit (Forum) by kylen on 1/28/2008
    Filed under: tab container and tabcontainer and ajax, tab container and update panel, tab containers, tab panel, tab tabpanel tabcontainer, TabContainer, tabContainers, TabPanel, Ajaxtoolkit Tabs
  • TabControl Problem - Sys.InvalidOperationException: owner must be set before intialize

    Recently moved production code to a 2003 Server machine utilizing the latest version of the toolkit: '1.0.11119.0' and I'm getting the following error randomly: "Sys.InvalidOperationException: owner must be set before intialize" I've researched and found several people having the same erorrs but it seems it was with previous releases. This issue was closed 'to not having a TabContainer wrapped around the TabPanel's' in CodePlex Issue: 10598 ( http://www.codeplex
    Posted to ASP.NET AJAX Control Toolkit (Forum) by kylen on 1/17/2008
  • DropdownList controls inside AccordionPane and Clearing ViewState on Control

    I'm having problems with ViewState loading stale data on DropDowns embedded within an AccordionPane. The dropdowns are bound to a generic collection object using Databinding via a 'PopulateList' method that's in a helper class: //bind a listControl with an object public static void PopulateList(System.Web.UI.WebControls.ListControl list, string valueDataName, string textDataName, Object bindingObject) { list.DataSource = bindingObject; list.DataValueField = valueDataName; list.DataTextField
    Posted to ASP.NET AJAX Control Toolkit (Forum) by kylen on 10/25/2007
  • Re: Include Master Page in webform ScriptManager Does not work

    Not sure of your exact problem but I suspect you are trying to use multiple Script Managers which will not work. I think what you want to do is either 1) Leave ScriptManager on your Master Page and use a ScriptManagerProxy on each of the pages that need it....or you can look into using the "ToolScriptManager" which was introduced a couple releases ago. Check the link below to read more about the ToolScriptManager : http://blogs.msdn.com/sburke/archive/2007/06/07/updated-toolkit-release
    Posted to ASP.NET AJAX UI (Forum) by kylen on 8/23/2007
  • Re: How to handle Ajax Timeout issue

    I'm going to refer to you to some documentation that will probably be much more beneficial to you than me simply telling you to increase the session timeout in your web.config file. Take a read at this: http://msdn2.microsoft.com/en-us/library/ms972429.aspx That should answer most questions you have about Session...
    Posted to ASP.NET AJAX Control Toolkit (Forum) by kylen on 8/14/2007
  • Re: How to handle Ajax Timeout issue

    Try setting the AsyncPostBackTimeout property of the ScriptManager in your master page to something like "36000". < asp : ScriptManager ID ="ScriptManager1" AsyncPostBackTimeout ="36000" runat ="server"> Only other thing I think could be happening is your session is timing out, if above doesn't resolve your problem...increase your session timeout.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by kylen on 8/10/2007
Page 1 of 5 (48 items) 1 2 3 4 5 Next >