Search

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

Matching Posts

  • Re: Bug? Login control fires OnLoggedIn and OnLoginError twice with CSS Friendly Adapters

    Are you using the latest version of the CSS Friendly Adapters or the old adapters? They are currently open source and community maintained. The old "official" site is no longer the latest build. Visit the codeplex site and download the latest version: http://www.codeplex.com/cssfriendly/SourceControl/ListDownloadableCommits.aspx . I'm almost certain that a few of us have worked through these issues in the past and I thought they were fixed (though it's possible some more obscure
    Posted to CSS Friendly Control Adapters (Forum) by Trevor311 on 12/31/2007
  • Re: CSS Adapter breaks CreateUserWizard

    Didn't fix the problem for me. Submting the wizard form results in the form reloading, and a login control that is placed in the side column menu has it's user name and password fields marked like their validation was submited and errored. I checked my database to verify that new new records were created. No error shows up for the CreateUserWizard control. It's as if it was never actually submitted. I'm going to have to remove the CSS Friendly adapter for this control. After a month of working with
    Posted to CSS Friendly Control Adapters (Forum) by Trevor311 on 4/25/2007
  • Re: Create Versioned Assemblies for Precompiled Web Sites

    Did you find a solution to this question? I have the same problem. It would be nice if there were a way to specify relative paths in compilerOptions parameter.
  • Re: DetailsView not rendering correctly with InsertVisible attribute

    Please see my reply in this post: http://forums.asp.net/1537076/ShowThread.aspx#1537076 This seems to have fixed the problem, but I'm not sure if it could be considered a permanent solution or not. The issue occurs when there are more rows than fields in the DetailsView (such as when the Insert button is rendered in the bottom row), then useFields == false. If useFields is false, then the code above to avoid the Index out of range error will actually bypass the code block used to bypass rendering
    Posted to CSS Friendly Control Adapters (Forum) by Trevor311 on 1/17/2007
  • Re: Got exception when enabling INSERT in DetailView

    I wanted to take this a step further and list out a possible fix for another bug in this adapter: if (( useFields || iRow < ControlAsDetailsView.Fields.Count) && (!ControlAsDetailsView.AutoGenerateRows) && ((row.RowState & DataControlRowState.Insert) == DataControlRowState.Insert) && (!ControlAsDetailsView.Fields[row.RowIndex].InsertVisible)) { continue; } Note that I have replaced "useFields" with "useFields || iRow < ControlAsDetailsView.Fields.Count. This is because
    Posted to CSS Friendly Control Adapters (Forum) by Trevor311 on 1/17/2007
  • DetailsView not rendering correctly with InsertVisible attribute

    Here's the DetailsView code: <div class="DetailsView" style="width: 600px;"> <asp:DetailsView ID="dvwPoll" runat="server" SkinID="ControlDetailsView" CssSelectorClass="PrettyDetailsView" AutoGenerateRows="False" DataSourceID="objCurrPoll" AutoGenerateEditButton="True" AutoGenerateInsertButton="True" HeaderText="Poll Details" DataKeyNames="ID" DefaultMode="Insert" OnItemCommand="dvwPoll_ItemCommand" OnItemInserted="dvwPoll_ItemInserted" OnItemUpdated="dvwPoll_ItemUpdated" OnItemCreated="dvwPoll_ItemCreated
    Posted to CSS Friendly Control Adapters (Forum) by Trevor311 on 1/17/2007
  • Re: Can Register new user that auto logs on, But manual logon does not work!

    Use the LoginCreatedUser parameter as below to prevent the wizard from auto-logging in the user you just created: < asp : CreateUserWizard runat ="server" ID ="CreateUserWizard1" LoginCreatedUser ="false" CompleteSuccessText ="User created successfully."> When all else fails, use Visual Studio's intellisense to browse the available tag parameters. Intellisense is probably the most helpful and user-friendly feature in all of Visual Studio, IMO. Hope this helps! Trevor
    Posted to Security (Forum) by Trevor311 on 12/13/2006
Page 1 of 1 (7 items)