Click here to Skip to main content
15,896,153 members
Home / Discussions / C#
   

C#

 
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 
AnswerRe: Question about String.Format("{0}{1}{2}{3}", string1, string2, string3); Pin
Sathesh Sakthivel20-Jun-07 17:48
Sathesh Sakthivel20-Jun-07 17:48 
AnswerRe: Question about String.Format("{0}{1}{2}{3}", string1, string2, string3); Pin
PIEBALDconsult20-Jun-07 17:50
mvePIEBALDconsult20-Jun-07 17:50 
GeneralRe: Question about String.Format("{0}{1}{2}{3}", string1, string2, string3); Pin
saytinh20-Jun-07 18:30
saytinh20-Jun-07 18:30 
GeneralRe: Question about String.Format("{0}{1}{2}{3}", string1, string2, string3); Pin
PIEBALDconsult21-Jun-07 10:55
mvePIEBALDconsult21-Jun-07 10:55 
GeneralRe: Question about String.Format("{0}{1}{2}{3}", string1, string2, string3); Pin
saytinh21-Jun-07 17:07
saytinh21-Jun-07 17:07 
AnswerRe: Question about String.Format("{0}{1}{2}{3}", string1, string2, string3); Pin
Christian Graus20-Jun-07 18:04
protectorChristian Graus20-Jun-07 18:04 
QuestionWhy VS Package can't work without SDK installed? Pin
remex_1980_junyongwu20-Jun-07 17:19
remex_1980_junyongwu20-Jun-07 17:19 
AnswerRe: Why VS Package can't work without SDK installed? Pin
Christian Graus20-Jun-07 18:05
protectorChristian Graus20-Jun-07 18:05 
GeneralRe: Why VS Package can't work without SDK installed? Pin
remex_1980_junyongwu20-Jun-07 21:08
remex_1980_junyongwu20-Jun-07 21:08 
QuestionImplicit/Explicit variable initialization & performance [modified] Pin
AesopTurtle20-Jun-07 15:42
AesopTurtle20-Jun-07 15:42 
AnswerRe: Implicit/Explicit variable initialization & performance Pin
Christian Graus20-Jun-07 15:47
protectorChristian Graus20-Jun-07 15:47 
GeneralRe: Implicit/Explicit variable initialization & performance Pin
AesopTurtle20-Jun-07 15:51
AesopTurtle20-Jun-07 15:51 
GeneralRe: Implicit/Explicit variable initialization & performance Pin
Christian Graus20-Jun-07 16:26
protectorChristian Graus20-Jun-07 16:26 
GeneralRe: Implicit/Explicit variable initialization & performance Pin
AesopTurtle20-Jun-07 16:29
AesopTurtle20-Jun-07 16:29 

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.