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

    Session.Contents Limit??

    Does anyone know the limit content that a Session.Content can hold? Thanks
  2. mleduc

    URL in Body CDONTS not sending Mail??

    I think I found the problem, it looks like using http://numeric_url/ does not work with cdonts, if I put http://domain/ in the body field it works. Now I am worried that people use numeric url in their message so I wont get them. Anyone know something about this? Thanks
  3. mleduc

    URL in Body CDONTS not sending Mail??

    Does not change still not sending mail
  4. mleduc

    URL in Body CDONTS not sending Mail??

    You mean putting the objMail.MailFormat befor the objMail.Body? I'll give it a try
  5. mleduc

    URL in Body CDONTS not sending Mail??

    Here it is ========================================== Dim rqEmail, rqSubject, rqBody, interface rqEmail = Request.Form("email") rqSubject = Request.Form("subject") rqBody = Request.Form("body") rqInterface = Request.Form("interface") rqBody =...
  6. mleduc

    URL in Body CDONTS not sending Mail??

    Hi, I created a asp page that send information from the form to cdonts/email. When I type text in my body form field, the mail is generated and sent. As soon as I put a URL (http://something.com), CDONTS don't send anything. Help Please!
  7. mleduc

    Newbie - load method doesn't work server side

    Hi, I'm trying to load a URL in the load() method. It's working when I do it client side using JScript but want to do it server side using ASP-VB Here is my code (server side) srchStr =...
  8. mleduc

    Favorites folder

    Hi all, Is there a way to display the Internet Explorer favorites on a page (listing view). Thanks
  9. mleduc

    Linking from IE to Outlook 2000

    Hi, is it possible to link from a web page to the users mailbox in outlook 2000? I'm able to link using: outlook:\\Mailbox - LastName, FirstName\Inbox But the problem is that the LastName, FirstName must change acccording from who's logged into the cpu. Is it possible to retreive from windows...
  10. mleduc

    ASP jscript

    Hi all, Just a stupid question, Is request.querystring exist with ASP/jscript? Thanks all.
  11. mleduc

    linking to users mailbox (outlook 2000)

    Hi, is it possible to link from a web page to the users mailbox in outlook 2000? I'm able to link using: outlook:\\Mailbox - LastName, FirstName\Inbox But the problem is that the LastName, FirstName must change acccording from who login into the cpu. Is it possible to retreive from windows...
  12. mleduc

    Determining DriveLetter that htm file is running on.

    Use the Request.ServerVariables("PATH_TRANSLATED")
  13. mleduc

    linking to users mailbox (outlook 2000)

    Hi, is it possible to link from a web page to the users mailbox in outlook 2000? I'm able to link using: outlook:\\Mailbox - LastName, FirstName\Inbox But the problem is that the LastName, FirstName must change acccording from who login into the cpu. Is it possible to retreive from windows...
  14. mleduc

    How can I map below said URL to any ASP file in IIS?

    Did you try creating a virtual folder called getFile?200 and redirecting this to the right URL?
  15. mleduc

    Verity Collection / CF_pathindex Help

    Hi all, I'm new with CF, and want to index (w/Verity) my site excluding some folders, I've found the custom tag CF_pathindex but don't know how to use it. If anyone of you could send me some samples, it would be great. Thanks Mario Leduc mleduc@ncc-ccn.ca
  16. mleduc

    initializing variables in a for loop

    Hi yesterday I post a message to know how create variables in a for loop. Now my problem is that I want to put a string in those variables but could not figure it how??? here what I tried For i = 1 to 60 If eval(&quot;x&quot; & i) <> &quot;&quot; Then execute &quot;Dim y&quot; & i...
  17. mleduc

    initialize variables in a for loop

    I'm able to creat the variables with the line of code execute &quot;Dim x&quot; & i What I'm having trouble with is to but a simple constant string in these new variables. Thanks
  18. mleduc

    initialize variables in a for loop

    Hi yesterday I post a message to know how create variables in a for loop. Now my problem is that I want to put a string in those variables but could not figure it how??? here what I tried For i = 1 to 60 If eval(&quot;x&quot; & i) <> &quot;&quot; Then execute &quot;Dim y&quot; & i...
  19. mleduc

    Creating variables in a for loop

    Hi, I want to auto-create variables inside a for loop like the example below but it doesn't work. Please Help!!!!!!. Here is the code I tried: For i = 1 to 60 If eval(&quot;x&quot; & i) <> &quot;&quot; Then eval(&quot;y&quot; & i) = &quot;String&quot; End if Next I tried this also...

Part and Inventory Search

Back
Top