Search

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

Matching Posts

  • Re: Setting Membership/Profile/Role provider's connection string at runtime...?

    Hi Charcoal, Did you find a solution to your custom role provider / config error? I'm using the same technique and am getting the exact same error as you describe on deployment (works locally though). Thanks, Mark
    Posted to Security (Forum) by markarmitage on 7/30/2009
  • Re: Custom Create User Wizard - My Profile not displaying

    Did you add the following section to the web.config as the article suggested? < location path = " MyProfile.aspx " > < system.web > < authorization > < deny users = " ? " /> < allow users = " * " /> </ authorization > </ system.web > </ location >
    Posted to Getting Started (Forum) by markarmitage on 3/5/2009
  • Re: The type or namespace name could not be found

    Does it tell you where in the code that this happens? This would be the first step in identifying the missing type or namespace?
    Posted to Web Forms (Forum) by markarmitage on 11/28/2008
  • Re: Help Required

    Hi, all looks good and I assume that it does what you want it to. It would be better to use a stored procedure rather than inline SQL and personally I prefer not to use a SqlDataSource control. You could have acheived the same result using the CreateUserControl and it's templating features and probably a bit less code but if you're happy with it and it works then hurrah.
    Posted to Security (Forum) by markarmitage on 11/28/2008
  • Re: Help Required

    You should be able to drag the create user control onto the page in design view which will display the standard fields and defaults to two steps, create user and complete. Select the little arrow at the top of the control to display the CreateUserWizard tasks and select customize Create User Step which will convert the control to a template. In the template you can add the additional fields you wish to save. You then override the CreatedUser event to save these additional fields. An example of this
    Posted to Security (Forum) by markarmitage on 11/27/2008
  • Re: how to go at particular date in calender.

    In the codebehind set the SelectedDate of the calendar control to DateTime.Now()
    Posted to Getting Started (Forum) by markarmitage on 11/27/2008
  • Re: Help Required

    You need to have an additional table in your database for the extra information you wish to store with a foreign key field that relates to the UserID in the membership tables. For the website use the create user wizard control and add the additional fields using the templating functionality of the control. Finally you need to create custom functionality to save the additional fields in the database and call this in the created user event of the page. This article is really good and covers most of
    Posted to Security (Forum) by markarmitage on 11/27/2008
  • Re: TimeTracker Download

    I had issues running a .vsi and found the following: The .vsi file is a zipped folder Change the file extension to .zip Edit the file with extension .vscontent Change the value of the ContentVersion node from 1.0 to 2.0 or vice versa Close the .vscontent file Rename the zip file to .vsi and try running again This worked for me, hope it helps you
    Posted to Time Tracker Starter Kit (Forum) by markarmitage on 11/21/2008
  • Re: Select & Count with Nulls Stmt

    You probably need to use a left outer join to include records that do not have a matching relationship.
  • Re: PostBack question

    You're setting the session value in the if statement that checks the e.commandname If e.CommandName = "Something" Then This should only fire for the link button that has the command name "Something" so you need to set the command name for the second link to the same (not sure if you can) or choose a different command name and check for that as well. Hope this makes sense.
    Posted to Getting Started (Forum) by markarmitage on 7/9/2008
Page 1 of 15 (141 items) 1 2 3 4 5 Next > ... Last »