Search

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

Matching Posts

  • Problem with authenticaion using LDAP

    I am using LDAP to authenticate users Active Directory using the follwoing code Dim serverPath, ActiveDirectorySearchPath As String serverPath = "LDAP://XWI11222.corp.xyz.com" ActiveDirectorySearchPath = "LDAP://dn=dev.ABCMed,dn=COM,OU= Application Accounts;" Dim dirEnt As DirectoryEntry = New DirectoryEntry(serverPath, strUserName, strPassword) Dim mySearcher As DirectorySearcher = New DirectorySearcher(dirEnt) mySearcher.Filter = "(&(objectClass=user)(samaccountname
    Posted to Active Directory and LDAP (Forum) by safzal1212 on 12/8/2009
  • Re: Problem with authenticaion using LDAP

    Thanks for your reply. You are right its running under anonymouse IIS account. Can you tell me what is the solution for that. I tried running ldp.exe on my test server and it gives me an error: 0x0 = ldap_unbind(ld); ld = cldap_open("30.214.1.20", 389); Established connection to 30.214.1.20. Retrieving base DSA information... Server error: <empty> Error<94>: ldap_parse_result failed: No result present in message Getting 0 entries:
    Posted to Active Directory and LDAP (Forum) by safzal1212 on 12/8/2009
  • Re: Version of windows 7

    Atleast Windows Professional.
    Posted to Installation and Setup (Forum) by safzal1212 on 11/18/2009
  • Re: Text Editor

    I have used the tinyMCE editor for my content manage system and its a good one. http://tinymce.moxiecode.com/
    Posted to Getting Started (Forum) by safzal1212 on 11/4/2009
  • Re: Object reference not set to an instance of an object.

    Use this before ur check If Not rbConflictInvolves.SelectedItem.Value = Nothing Then
    Posted to Getting Started (Forum) by safzal1212 on 11/2/2009
  • Re: Timeout expired on live website

    Also check if there is any stored procedure or query returning too many rows or a cartesian product.
    Posted to Getting Started (Forum) by safzal1212 on 11/2/2009
  • Re: how to prevent same file upload

    You can not do it with compare validator. Use javascript or you can do it through code behind as well. You could get the file names by fileupload.postedfile.filename property and then compare them.
    Posted to Getting Started (Forum) by safzal1212 on 10/30/2009
  • Re: Email Form in C# - not sending

    This this: //Create a new instance of mail message MailMessage objMailMessage = new MailMessage(); objMailMessage.From = new MailAddress(strFrom); objMailMessage.To.Add(new MailAddress(strRecepient)); objMailMessage.Subject = strSubject; objMailMessage.Body = strBody; //Set the format of email objMailMessage.IsBodyHtml = true; //Set the priority of email objMailMessage.Priority = MailPriority.Normal; //Create a instance of SMTPClient SmtpClient objSmtpClient = new SmtpClient(); //Sent the Email objSmtpClient
    Posted to Getting Started (Forum) by safzal1212 on 10/29/2009
  • Re: dbnull and 1/1/1900

    Try something like this: Dim cmdCommand As New SqlCommand cmdCommand.CommandText = "usp_InserData" cmdCommand.CommandType = CommandType.StoredProcedure cmdCommand.Connection = cnConn Dim parmDate As New SqlParameter parmDate.ParameterName = "@dtDate" parmDate.DbType = DbType.DateTime parmDate.Direction = ParameterDirection.Input parmDate.Value = DBNull.Value cmdCommand.Parameters.Add(parmDate) cmdCommand.ExecuteNonQuery()
    Posted to Getting Started (Forum) by safzal1212 on 10/29/2009
  • Re: Breakpoints are not being hit

    There may be some error on that page because of which its not being compiled properly. Do you see any error message on the botton left corner of that page after loading?
    Posted to Getting Started (Forum) by safzal1212 on 10/29/2009
Page 1 of 8 (75 items) 1 2 3 4 5 Next > ... Last ยป
Microsoft Communities