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 SkipVought 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. LordBass

    IIS Permission Change Disables JavaScript Calendar.. Suggestions?

    I'll update myself.. Something else changed, because now I can't get the above calendar example to work at all on a test ASP (simply says 'error'), whereas at least on the 'non-anonymous' pages the calendar launches, allows switching of days, years. Just can't click and have the calendar fill...
  2. LordBass

    IIS Permission Change Disables JavaScript Calendar.. Suggestions?

    Greetings all. I've got a JavaScript calendar on an ASP implemented from this example: http://javascript.internet.com/calendars/popup-date-picker.html The calendar worked fine until I implemented a separate JavaScript that shows the username of the machine's logged on user that accesses the...
  3. LordBass

    Example of ASP LDAP query string?

    I'm pleased that this was possible to implement without hardcoding a LDAP server or any company information.. I'm reviewing the code to figure out how this works. :) Here's my code. The section in question is bold: <%@ Language=VBScript %> <% Option Explicit Dim...
  4. LordBass

    Example of ASP LDAP query string?

    Wow. I got it working! For reference, here's how it's working for me: 1. Code is running on an ASP in a folder with 'anonymous access' turned off in IIS, as described above to allow the 'display username' javascript to work. (As a note, I have it working without requiring 'basic authentication'...
  5. LordBass

    Example of ASP LDAP query string?

    The code that displays the username is: <% Dim strNTUser, iPos strNTUser = RTrim(Request.ServerVariables(&quot;LOGON_USER&quot;)) iPos = Len(strNTUser) - InStr(1, strNTUser,&quot;\&quot;,1) strNTUser = Right(strNTUser, iPos) Response.Write(strNTUSer) %> (To function, this requires turning off...
  6. LordBass

    Example of ASP LDAP query string?

    This is the best example that I've been able to work with so far. The example was taken from http://www.experts-exchange.com/Web/Web_Languages/ASP/Q_20719161.html I believe this example will do what I'm looking for, though the only value I really need returned is the email address (this should...
  7. LordBass

    Example of ASP LDAP query string?

    Greetings all, I'm attempting to implement something close to this on an ASP through FrontPage (with MS back end), and am not sure how to modify it for my situation. What I'm trying to do is get an ASP to detect the currently logged on user and query AD to display their email address on the...
  8. LordBass

    How To Revoke/Expire Keys Without Passphrase?

    We have our own PGP keyserver on our internal network, which has not replicated its keys to an outside keyserver. The documentation for the keyserver says there should be a way to set a user to 'delete' keys from the keyserver thru the web console, but does not say how to properly set up the...
  9. LordBass

    How To Revoke/Expire Keys Without Passphrase?

    Greetings, We have users that have forgotten their passphrases or left the company whose keys need to be revoked or expired on our local keyserver. How can this be done without the passphrase? With new keys for lost passphrases, these users will now be listed twice on our server, with no obvious...
  10. LordBass

    Nightly Job 'Repeating', Listed at 99%.. Suggestions?

    Greetings all, My recently built BE 8.5 Server lists its one nightly backup job twice after running this job.. Let's break it down like this: - Job scheduled as normal for the night - Job runs properly, finishes without error, listed as complete - Instead of scheduling the job for the next...
  11. LordBass

    No Email Notification With Outlook 2k SR-1. Suggestions?

    Thanks, tho there is no &quot;attachment security&quot; option in Outlook 2k SR-1 under Tools/Options/Security. My understanding about the SR-1 security update is that it cannot be removed once installed, and cannot be turned off. I suppose otherwise people would install it, turn it off, and be...
  12. LordBass

    No Email Notification With Outlook 2k SR-1. Suggestions?

    As the subject states, I can't get email notification to work for scheduled jobs with Outlook 2k SR-1 as the client. The notification test works, but prompts with the Outlook security box asking if I want to allow an application to access Outlook. I have to click Yes for the test to work. I...
  13. LordBass

    &quot;Job Failed&quot; even tho it didnt

    If this happens when backing up Win2k machines, it's probably because the Agent isn't installed on those machines. Even if everything else works, I believe BE will list a job as failed if the Agent isn't on a backed-up Win2k machine. I also may be wrong on this. :) lb

Part and Inventory Search

Back
Top