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. TheCount

    ASP IIS Help!!

    Maybe it is better tell us what your problem is. What is not working for a start. Can you access your own site by using localhost in your browser!!
  2. TheCount

    How can i take care of anti spam with subscription pages

    Thanks Chris, Very good idea to use POST instead of an GET. Do you know where i can get a good example of a way to change the formfields on the fly and store them in session variables?
  3. TheCount

    How can i take care of anti spam with subscription pages

    Can someone tell me or give me an example how to preserve spamming my database. I want to make an possibility to Subribe to an newsletter on my website. The procedure is now: You have to fill in your name and email adres on a form. When they submit, they get an email message to confirm their...
  4. TheCount

    Question about interoperation between Avaya and MD110

    Can someone tells me what kind of features are posible when i connect an Avaya system with an MD110 via QSIG Tie line. I this only calling and CLI or can i use for example callback when busy? Thanks in advance
  5. TheCount

    If then statement help needed.

    Thanks i gona try the suggestions tommorow, and turn back here to tell if it work ro not
  6. TheCount

    If then statement help needed.

    I had thought about that too, but the problem with that is : Let say SMD = 10-september-2003 then the result of month gives me september. Today it is 11-december-2004 so a compare with that and datediff("m", now, rsCommon("SMD"))-3 gives me true. But it was in the year 2003 and not 2004 so it...
  7. TheCount

    If then statement help needed.

    There is no error. It wont give me any result while i put a few testitems in the database with a date between now and 3-4 months ago. In the code i check if the SMD(date) is between 3 months and 6 months ago. This statement above doesn't give me an response while it should be.
  8. TheCount

    If then statement help needed.

    No i need the AND. I do a query on a database, and want to do the following with the recordset. do something if data = between 2 weeks and 3 months ago do something if data = between 3 months and 6 months ago do something if data = between 6 months and 1 year ago do something if data = between...
  9. TheCount

    If then statement help needed.

    I have the following problem: This is my statement and rsCommon("SMD") is an date. if DateDiff("m", now, rsCommon("SMD")) >= -3 and DateDiff("m", now, rsCommon("SMD")) <= -6 then Response.write("<tr>") & vbCrLF Response.write("<td>" & rsCommon("username") & "</td>") & vbCrLF...
  10. TheCount

    datetime stamp error

    For SQL database date you should use getdate() for Access database Now()
  11. TheCount

    SQL Connection

    Most hosting providers giving you an DSN string to connect to.
  12. TheCount

    determine download done

    You can see that in the W3SVC logfiles. You can find them in c:\winnt\system32\logfiles\ A tool to read them is 123loganalyzer.
  13. TheCount

    CODE in tek-tips site

    Click on the word "progress TGML" in the reply box and you see all examples.
  14. TheCount

    Date format YYYY/MM/DD

    Use the datediff() function. See at Microsoft MSDN. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vsfctdatediff.asp
  15. TheCount

    Email not copying to Sent Items in Outlook

    Change the line : objNewMail.To = Request.Form("txtClientEmail") to objNewMail.To = Request.Form("txtClientEmail") & ";youraccount@yourcompany.com" make youraccount@yourcompany.com your email adres. On this way you get an copy of the mail. :-)
  16. TheCount

    Cannot open database.

    Checking and Setting up the Correct Permissions on the IIS Server If you are using an ASP application, or writing an ASP application, that requires that you write data to a database or a text file then you will need to check and if necessary change the permissions on the server so that you...
  17. TheCount

    Cannot open database.

    I think there is something wrong with permissions. Look if IUSR_MACHINENAME has acces to the database. MACHINENAME is the name of your machine/server.
  18. TheCount

    Cannot open database.

    Source lines of opening your database please? By example LINE56
  19. TheCount

    Add To Word Document

    Look at http://www.softartisans.com maybe they have the solution for you.
  20. TheCount

    I have a question

    <% If strEmail <> "" then StrDisabled = " Disabled" %> <input type="text" name="Email" size="32" value="<%=strEmail%>"<%=strDisabled%>>

Part and Inventory Search

Back
Top