Hazel Mahmud

Hazel Mahmud

  • NA
  • 299
  • 65.7k

how to pass password to another page

Feb 20 2017 11:00 AM
public static String GetSession(String sFilter)
{
string adsPath = "LDAP://af.ad.uum";
string[] attribs = new string[] { "employeeID" };
String username = null;
String password = null; 
DirectoryEntry de = new DirectoryEntry(adsPath, username, password, AuthenticationTypes.Secure);
return de;  
}
refer to the above code, how do i pass password (the onet with yellow highlighted) to another page. and how to read it back in another page.. tq..please help..

Answers (10)