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 strongm 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. ScottTN

    Passing all checked chkboxes to 2nd page

    Pete I already am passing the values to my second page using a form. And you attitude is not the most helpful either! I already figured this out. And this is a little bit more than just asp 101 as you stated. -Scott
  2. ScottTN

    Passing all checked chkboxes to 2nd page

    I am creating a small scale checkout asp site. The user views a catalog page with items that have checkboxes (Created from SQL query from SQL 2000). I would like to pass the values of all checked boxes to a second page being used as a conformation page. I have worked on ths for about a week...
  3. ScottTN

    ASP / SQL 2000

    I am creating an intranet site that allows our users to check status of applications online. If multiple records are found, I get mutliple asp generated forms. I am trying to add a count function to run prior to running my main select statement. If the count is more that 1 I want to generate...
  4. ScottTN

    Abusing Exchange Server

    You need to turn of mail relaying. Which version of exchange are you running? Exchange 2k on Win 2K? -Scott
  5. ScottTN

    Public Folder \ Contact Permissions

    I have a Public Folder, x. The default security is reviewer. Three users have owner, and 1 user has custom. The custom user has random security on the contact records. Some are fine and other are read only. Made the custom user owner, and the same thing happens. Any ideas?
  6. ScottTN

    Need to read tenp location from enviro variable

    Thanks everyone. I got this working. Scott
  7. ScottTN

    Need to read tenp location from enviro variable

    I need to read the value of the temp file location from the system enviroment variable. I can not remember this for anything. Thanks in advanced!
  8. ScottTN

    HTTP 500 Error

    Made the changes and tested. Still same error. Aldo below code is used to post to prior code. Thanks for the help. <html> <head> <title>Submit RHGS Group Lead</title> </head> <body background=&quot;http://rh.tfic.com/images/newpst10.jpg&quot; link=&quot;#CC0000&quot...
  9. ScottTN

    HTTP 500 Error

    Here is the full code maybe this will help. The email server is an exchange server setup to allow internal relays. <%@ Language=VBScript %> <% <!--#include file=&quot;cdovbs.inc&quot;--> ' Get the Contact information used more than once txtFName = Request.Form(&quot;fname&quot;)...
  10. ScottTN

    HTTP 500 Error

    When trying to use to code below, I recieve a 500 error. The error occurs on the objMail.Send line. Any ideas? intIndex = instr(txtEMail,&quot;@&quot;) if intIndex then if instr(intIndex + 1,txtEMail,&quot;.&quot;) then strMsg = &quot;Dear &quot; & txtFName & &quot; &quot; & txtLName...
  11. ScottTN

    Forwarding to an external address from exchange

    Create a contact record in the AD. Set the SMTP address to the external email address. Then forward messages to both the mailbox and the contact record.
  12. ScottTN

    Public Folder Permissions Not Working - Exchange 2000

    Create a new public folder in the ESM set the permissions on it giving you admin rights. Copy the corrupt folder to this folder. Right Click on the new folder > all tasks > propagate settings. This should give you access to the folder. Then move the old folder back to the root of the public...
  13. ScottTN

    Block external email to a group of users

    I am migrating another groups users to my exchange server. Their management wants to block in\out external emaill. Any ideas? Thanks, Scott
  14. ScottTN

    Mailbox is not being created.

    I figured it out. The update service was not working properly. I did a rebuild an a update and it fixed it. Thanks, Scott
  15. ScottTN

    Mailbox is not being created.

    When creating a new user account in W2K domain with Exchange 2000 SP2, when a new user account is created the mailbox is not created. This just started occuring and no changes have been made to the system. Thanks! Scott
  16. ScottTN

    Public Folder Security Issue

    Permissions on a public folder are interminnet. Three users are set to owner of a public contact folder. They randomly recieve READ-ONLY messages when trying to save. I have checked permissions. They are set to ADMIN. Could a ACL cause this type of error. It only happen to certian records...
  17. ScottTN

    Blocked email attachments

    It is outlook 2002. Either use Outlook 97 or send the message to a web-based email provider and save the attachment to your computer. Scott
  18. ScottTN

    Need Pfadmin.exe and Pfinfo.exe bad

    I have had a public folder crash. Any one have these? Scott
  19. ScottTN

    VBA problem with Access 2000

    Thanks for the breakpoint and DAO tip. I was trying to say formname.fieldname instead of Me.field name. It's working. Thanks again!
  20. ScottTN

    Is not null statement help

    I am trying to use a If then statement to make sure that a field is not null based on a combo box value. Thanks Scott! __________________________________________________________ If Me.cboStatus = &quot;Complete&quot; Then Me.txtDateComplete IS NOT NULL STATEMENT HERE??? Else End If

Part and Inventory Search

Back
Top