Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. buraje1

    ActiveDirectory: How to get user name.

    Bulls... erm. A little self correction: of course what I want is the filter "(objectClass=user)". :-)
  2. buraje1

    ActiveDirectory: How to get user name.

    Thanks, Jason. That did the trick. For others reading this post later: "PropertiesToLoad" is a read-only property, so you can't assign a value to it, that's why Jason's solution requires a little bit of research, but still solves the problem. Instead, you'll have to give that string array to the...
  3. buraje1

    ActiveDirectory: How to get user name.

    Hello folks, I've been trying to find out for a while, why I am not getting the user name, when I access the active directory under .NET. I am using this simple code: DirectoryEntry entry = new DirectoryEntry("LDAP://OU=User organisation, ..."); DirectorySearcher mySearcher = new...
  4. buraje1

    IE sends img-Tag instead of submit-button-value

    For whoever might be interested in that: Yes, it does work. submit_mult_approve.x and submit_mult_approve.y become available as isset($_REQUEST['submit_mult_approve_x']) (and the same with "y") in PHP. So I can find out via the existance of these variables, which button had been clicked and so...
  5. buraje1

    IE sends img-Tag instead of submit-button-value

    Yes, sure, I tried that. <input type="image" src="/images/approve.png" name="submit_mult_approve" value="approve" alt="Approve" width="16" height="16" align="middle" /> I gave the three image - submits three different names, so only one of them would be set. Seem to work, but the mouse...
  6. buraje1

    IE sends img-Tag instead of submit-button-value

    Maybe let me put it in shorter words again: I have multiple buttons that are images for one single form. IE sends the img-tag I used (which is surrounded by the button tag) instead of the value of the button. Has anybody experienced that before? For code examples see the longer version above.
  7. buraje1

    IE sends img-Tag instead of submit-button-value

    Hi, I have a problem that seems to be small to me, because it has been solved before, namely by those who made phpmyadmin. Unfortunately I don't know what I did differently, actually I took a part of their html-code and modified it. There are three submit-buttons that have been placed with...

Part and Inventory Search

Back
Top