Search

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

Matching Posts

  • Re: Problem with ASP.Net Development server and Internet Explorer

    I had a very similar problem. Here's how I fixed it: http://blog.donnfelker.com/2007/07/09/ASPNETProjectsTakeForeverToLoadInInternetExplorer.aspx I'm not sure what exactly was causing the problem, but I do know this fixed my problem. Good luck! Donn Felker - MCTS
  • Re: Store Locator

    adarmous: I was wondering if someone knew the logic behind creating a store locator based on a zipcode or postcode. I dont know if you've found a solution for this or not, but I have done this and posted a full solution on my blog. http://blog.donnfelker.com/2007/03/17/HOWTOBuildAStoreLocatorInASPNET.aspx Good luck, -df
    Posted to Getting Started (Forum) by dfelker on 3/19/2007
  • Re: Zip code locator

    stayyoung: Hello everyone, I'm very new to developing with asp.net. I'm trying to create a form on my site for a personal chef. I need to have a section where users will enter in their zip code, and have whether or not we deliver to that area displayed on the same page. Please help. I've done pretty much exactly what you want. Check it out here: http://blog.donnfelker.com/2007/03/17/HOWTOBuildAStoreLocatorInASPNET.aspx Its a store locator. Just have your users plug in their zipcode and then only
    Posted to Web Forms (Forum) by dfelker on 3/19/2007
  • Return all users that are members of groups within a cerain OU?

    I need to return a list of users that are members of any group within an OU. For example: \ AD Root Users johndoe janedoe jsmith asmith MyOU Group1 Members johndoe janedoe Group 2 Members jsmith asmith I need to return all users that are in the MyOU group members. Is this possible? Do I need to loop through every group and then find every member from within that group? Or is there an easier filter I can apply? Thanks
    Posted to Active Directory and LDAP (Forum) by dfelker on 1/28/2006
  • Re: Changing Group Name Problem...

    This fixed it. group.Rename( String .Format( "{0}={1}" , ActiveDirectoryTerms .CN.ToString(), newGroupName)); group.Properties[ ActiveDirectoryTerms .description.ToString()].Value = newGroupName; group.Properties[ ActiveDirectoryTerms .sAMAccountName.ToString()].Value = newGroupName; group.CommitChanges(); I was using the wrong syntax.
    Posted to Active Directory and LDAP (Forum) by dfelker on 1/28/2006
  • Changing Group Name Problem...

    I'm attempting to change a group name with the following code: DirectoryEntry group = new DirectoryEntry(result.Path); group.Rename(String.Format("{0}={1}", ActiveDirectoryTerms.CN.ToString(), newGroupName)); // <-- Error Occurs here group.Rename(String.Format("{0}={1}",ActiveDirectoryTerms.Description.ToString(), newGroupName)); group.Rename(String.Format("{0}={1}",ActiveDirectoryTerms.sAMAccountName.ToString(), newGroupName)); group.CommitChanges(); The error I receieve is: Error 1 TestCase
    Posted to Active Directory and LDAP (Forum) by dfelker on 1/21/2006
  • Re: DB Connection Error.

    I figured this one out with some help of this post: http://forums.asp.net/1147832/ShowPost.aspx I also had to change the permissions on the virtual directory as well as on the database to allow access. Now, I'm receiving this error: The role 'ProjectAdministrator' was not found. Roles.AddUserToRole(newUserName, "ProjectAdministrator"); Line 36: Roles.AddUserToRole(newUserName, "ProjectManager"); Line 37: Roles.AddUserToRole(newUserName, "Consultant"); Source File: c:\Inetpub\wwwroot\TimeTracker\TimeTracker
    Posted to Time Tracker Starter Kit (Forum) by dfelker on 1/6/2006
  • DB Connection Error.

    I have SQL Server 2005 installed, but its not the Express version. When I run the project from VS.NET I arrive at the login page. I then attempt to create a new user. Upon submitting that page, this error is presented: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating
    Posted to Time Tracker Starter Kit (Forum) by dfelker on 1/6/2006
  • Re: TimeTracker doesn't work - unable to connect to database

    I'm getting the same error as well. I've tried a few things to get it running. I have SQL Server 2005 installed. Does it have to be the "express" version? Thanks
    Posted to Time Tracker Starter Kit (Forum) by dfelker on 1/4/2006
  • Re: Compilation Errors

    I had to go back and delete the old files. Re install the new ones. It still didnt work. Then I shut everything down, deleted the files. Rebooted, reinstalled the files and then started VS.NET 2005 and it worked finally. Thanks for the help. It baffles me why the application was acting like this. Thanks again!
Page 1 of 2 (12 items) 1 2 Next >
Microsoft Communities