Search

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

Matching Posts

  • Re: Turn off auto country detection for Registration Form

    You can use " PerformCountryLookup" property for that. Just set it to 'false' Regards
    Posted to Component Discussions (Forum) by RadekP on 4/23/2008
  • Re: moving the page numbers to the top right of the gridview?

    I see. That grid is only $12.99. Take care
    Posted to Data Presentation Controls (Forum) by RadekP on 4/17/2008
  • Re: Hierarchical DropDownList

    I use this http://www.mycustomcontrols.com/Products/XmlDropDownList/Demo/ with great success. Regards
    Posted to Web Forms (Forum) by RadekP on 4/16/2008
  • Re: moving the page numbers to the top right of the gridview?

    You might want to look at: http://www.mycustomcontrols.com/Products/GridViewEx/Demo/ . It adds more paging info to a GridView effortlessly. It's my preferred way. I set the skin like below and the paging functionality propagates to all my gridviews: < radas : GridViewEx runat ="server" AllowPaging ="True" PagerSettings-NextPageText ="Next&amp;gt;" PagerSettings-PreviousPageText ="&amp;lt;Previous" AddExtraPagingInfo ="true" PageSize
    Posted to Data Presentation Controls (Forum) by RadekP on 4/15/2008
    Filed under: paging, GridView
  • Long time to compile ASP.NET 2.0 page. Just before Page Validation is Complete.

    Hello all I'm experiencing really counterproductive behavior of VS2005 and I was wondering if anybody could share any experience or tips to improve things. My Web Project is going bigger (although it still does not exceed 400 files) and my compilation time even of a single page (right click/'Build Page') takes sooo long (almost a minute). I do have around 15 component libraries referenced - I've noticed this has some effect on it to some degree but .. still... to wait so long on my PIV 2.8GHz just
    Posted to Free For All (Forum) by RadekP on 2/28/2006
  • Re: State Persistence for CompositeDataBoundControl.

    Wow. After implementing my custom state management for complex dataItem property that worked pretty well I went back to this simple example and figured out much simpler way of getting it to persist state after postback. The answer for above code actually lays in one tiny code change. I wonder who might guess it :) Radek
    Posted to Custom Server Controls (Forum) by RadekP on 2/9/2006
  • State Persistence for CompositeDataBoundControl.

    I was wondering what's the proper way of handling postback data in CompositeDataBoundControl. All I ask for is the control to be able to load viewstate for its enumerated controls. Let's say doing simple: protected override int CreateChildControls(System.Collections. IEnumerable dataSource, bool dataBinding) { if (dataSource == null ) return 0; int counter=0; foreach ( object item in dataSource) { UDFEditorDataItemContainer container = new UDFEditorDataItemContainer (item, counter); Label content
    Posted to Custom Server Controls (Forum) by RadekP on 2/7/2006
  • Unwanted Assembly References. New Web Project Compilation Model.

    Hi All Why is VS 2005 Web Project always adding unwanted references to my web.config files (like below) after Rebuild? System.Windows.Forms is web project? OracleClient when I work solely with MS SQL ? What's happening ? I truly miss old compilation model. I know all the super advantages but still .. my productivity is just lower. The performance of compiling each single page leaves a lot to desire. Single change in App_Code folder and I again end up waiting and waiting. Somebody said the new compilation
    Posted to Free For All (Forum) by RadekP on 1/4/2006
  • The control collection cannot be modified. Overriding CreateChildControls() of UserControl.

    Hi all. I hope somebody can shed some light on the error message I quite don't get. I'm trying to add some controls to System.Web.UI.UserControl at runtime. When doing simple: protected override void CreateChildControls(){ base .CreateChildControls(); Controls.Add( new LiteralControl ( "My Literal" )); } I get an exception: The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases Obviously I'm NOT trying to modify ControlCollection during those listed events
    Posted to Custom Server Controls (Forum) by RadekP on 12/28/2005
  • Re: System.Web.HttpException: Unable to validate data.

    Looks like all of them are from one client. Below is pertaining event log I found. It is a Viewstate verification that fails, indeed. What also caught my attention is that none of those requests have been authenticated (forms). I'll try to manually specify validationKey in machine.config. Let's see if this helps. Thank You Ryan Radek Event code: 4009 Event message: Viewstate verification failed. Reason: The viewstate supplied failed integrity check. Event time: 12/22/2005 11:44:51 PM Event time
    Posted to Free For All (Forum) by RadekP on 12/27/2005
Page 1 of 5 (49 items) 1 2 3 4 5 Next >