Hi all, I want a piece of information, I have a HTML document and I want to send the whole document to someone in a mail by the click of a button.(I am using...
I've designed a web appln.. where in the main page I've to add username and pwd .. and if they select a product without logging in.. they've to be redirected...
If you access the html file via HTTP, you can take advantage of CDO's CreateMHTMLBody method. yourMailObject.CreateMHTMLBody "http://yoursite/yourpage.htm" Ray...
Woops, made a little typo :-) Try something like this: <table> <tr> <td>This is the LEFT hand cell</td> <td><!--#include file="my_file.asp"--></td> </tr> ...
Try something like this: <table> <tr> <td>This is the right hand cell</td> <td><!--#include file="my_file.asp"--></td> </tr> </table> Mark. kalai_is...
Hi all, I've this strange problem to me. I've used my PC for months ago to test my web site. I use IIS 5.1 and XP Pro. My site programmed by ASP. Suddenly POST...
Yes, I see the sample HTML you sent, but did you check IIS? ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On...
yes but is windows integrated login turned on in IIS under directory security?? I was doing something similar and this was the problem. As soon as I turned...
I see no I just checked it now !!!! I'm Sorry it seems something strange. Thanks for your support. ... [Non-text portions of this message have been removed]...
Hi I have a string "strHTML" in an ASP page I want to call the string in another ASP Page How do I do it? Request.Form works for HTM documents only Kindly help...
Hi all i was wondering what is involved in being able to have email content sent to a POP3 address, being read into a database automatically? is this doable in...
Hi Moshe, ... There's a few ways to do it. The easiest way would be to be able to enumerate all the message files as they reside in the postoffice folder on...
Hi Shaen, Many thanks for the info. will take a look at the links... Regards, Moshe ... From: Shawn K. Hall Hi Moshe, ... There's a few ways to do it. The...
Hi Abhishek, Probably the easiest way to do it, without using silly tricks, is to use a hidden field, in your form, like this: <form action="next_page.asp"...
I seem to have developed some sort of connection leak in one or more of my pages. Not sure where it is at this point, but am wondering if, in the meantime, I...
No, there isn't really any sort of magical code to close all connections. Have you gone through your code to make sure that you are closing and destroying your...
what about this - If IsObject(objCon) Then objCon.Close Set objCon = Nothing End If ... Home : http://groups.yahoo.com/group/active-server-pages ... Post...
If that, put it in a "on error resume next/on error goto 0" block. Annoyingly, a closed and destroyed object will still come back true with IsObject. Ray at...
... From: Ray at home Annoyingly, a closed and destroyed object will still come back true with IsObject. i hear you- that just solves a question i had... why...
To see if I understand it correctly: I put in "on error resume next" at the beginning of the page. In the error handler, I close/destroy the connection and put...
On error goto 0 won't stop the execution of further code unless an exception is thrown. If no exception is thrown the code will run as normal. Dan ... From:...
Hello Guys: I am having a hard time with this query, as it relates to Access. I have a database with a table called tblPhotos. One column in this table is...
Are you darn sure the path will not have any variations of the word "locations"? If so, you can rs("path") = Replace(rs("path"),"/Locations/","/") ... ...
Chris: Thank you, but I would prefer to make the change at the database level and not on the .asp page. Although I could write an ASP page doing exactly as you...
Use an update query like so:- Update [tablename] set [path] = Replace([path],"/Locations/","/") where... Dan ... From: active-server-pages@yahoogroups.com ...
OOOOOOOHHHHHHH....... Chris was talking using the Replace in the SQL Statement. I missed that part :-( I was VERY confused. Thanks to both of you for your...
Are you running Access locally against the database? Just open the table in Access and use search/replace to do a normal global change. You can limit the...
Hello all, first post here.... I'm hoping it's possible to write a function that will let a client download their Access db, via an ASP page. The db is stored...