Click here to Skip to main content
15,905,607 members
Home / Discussions / C#
   

C#

 
AnswerRe: Publishing Pin
Vasudevan Deepak Kumar20-Jun-07 21:35
Vasudevan Deepak Kumar20-Jun-07 21:35 
Questioncommand prompt Pin
razanabanu20-Jun-07 20:36
razanabanu20-Jun-07 20:36 
AnswerRe: command prompt Pin
Christian Graus20-Jun-07 20:51
protectorChristian Graus20-Jun-07 20:51 
GeneralRe: command prompt Pin
razanabanu20-Jun-07 21:15
razanabanu20-Jun-07 21:15 
GeneralRe: command prompt Pin
Vasudevan Deepak Kumar20-Jun-07 21:38
Vasudevan Deepak Kumar20-Jun-07 21:38 
GeneralRe: command prompt Pin
razanabanu20-Jun-07 22:21
razanabanu20-Jun-07 22:21 
GeneralRe: command prompt Pin
Vasudevan Deepak Kumar20-Jun-07 23:19
Vasudevan Deepak Kumar20-Jun-07 23:19 
QuestionGoogle search component in ASP.net application Pin
Deepml20-Jun-07 20:30
Deepml20-Jun-07 20:30 
AnswerRe: Google search component in ASP.net application Pin
Christian Graus20-Jun-07 20:32
protectorChristian Graus20-Jun-07 20:32 
GeneralRe: Google search component in ASP.net application Pin
Deepml20-Jun-07 20:37
Deepml20-Jun-07 20:37 
GeneralRe: Google search component in ASP.net application Pin
Christian Graus20-Jun-07 20:50
protectorChristian Graus20-Jun-07 20:50 
QuestionUser security Pin
Tauseef A20-Jun-07 19:51
Tauseef A20-Jun-07 19:51 
QuestionHow to accept value from javascript in c# Pin
Sapan Roy20-Jun-07 19:00
Sapan Roy20-Jun-07 19:00 
AnswerRe: How to accept value from javascript in c# Pin
Christian Graus20-Jun-07 19:17
protectorChristian Graus20-Jun-07 19:17 
GeneralRe: How to accept value from javascript in c# Pin
Sathesh Sakthivel20-Jun-07 19:19
Sathesh Sakthivel20-Jun-07 19:19 
GeneralRe: How to accept value from javascript in c# Pin
Vasudevan Deepak Kumar20-Jun-07 20:34
Vasudevan Deepak Kumar20-Jun-07 20:34 
QuestionPrint Screen Pin
Tauseef A20-Jun-07 18:43
Tauseef A20-Jun-07 18:43 
AnswerRe: Print Screen Pin
HakunaMatada20-Jun-07 19:31
HakunaMatada20-Jun-07 19:31 
AnswerRe: Print Screen Pin
Vasudevan Deepak Kumar20-Jun-07 21:41
Vasudevan Deepak Kumar20-Jun-07 21:41 
GeneralRe: Print Screen Pin
Martin#20-Jun-07 21:51
Martin#20-Jun-07 21:51 
AnswerRe: Print Screen Pin
Martin#20-Jun-07 22:00
Martin#20-Jun-07 22:00 
QuestionAD QUERYING USING LDAP NOT WORKING FROM REMOTE MACHINE Pin
Prajin20-Jun-07 18:38
Prajin20-Jun-07 18:38 
DirectoryEntry searchRoot = new DirectoryEntry
DirectorySearcher search = new DirectorySearcher();
ArrayList allUsers = new ArrayList();
DirectorySearcher search = new DirectorySearcher(searchRoot);
search.CacheResults = true;
search.Filter = "(&(objectClass=user)(objectClass=person))";
search.PropertiesToLoad.Add("samaccountname");
search.PropertiesToLoad.Add("displayname");
SearchResult result;
SearchResultCollection resultCol = search.FindAll();

I used the above code to retrive active directory usernames and loginIds .Its working fine from local machine but not working from remote machine.
It is giving the erroe"An operations error occurred "
If any one has a solution for this please help me

Prajin


QuestionCalling Managed Code From Unmanaged Code Pin
hamid12332120-Jun-07 18:32
hamid12332120-Jun-07 18:32 
QuestionGridView Selected Row? Pin
Expert Coming20-Jun-07 18:00
Expert Coming20-Jun-07 18:00 
QuestionQuestion about String.Format("{0}{1}{2}{3}", string1, string2, string3); Pin
saytinh20-Jun-07 17:27
saytinh20-Jun-07 17:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.