Your requirements sound like they could be accomplished much more simply with a select/option HTML control with the MULTIPLE attribute enabled, e.g.
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<br>
<form...
NoCoolHandle has it right. Isolate your website/application by using the MMC to set it so that it runs in it's own process space. Although this most likely will not get you any closer to a solution, it should make you some points with the server administrator who propbably sees your website as a...
When the user hits the "Yes, Submit" button, does it ever get to pageBeforeLast.asp? This is presumably your intended page 3 since it's what you have for the action=... on the hiddden form.
If control passes to this page, then do the request.form variables have values or not?
If they...
The Set rs1 = New objRO syntax is reserved for "late bound" objects, i.e. those created using the "class" statement.
See the documenation on the "class" statement for the lowdown.
If the report is already defined in MS Access, try outputing it from MS Access as either Rich Text (filetype RTF, can be viewed using MS Word which will launch within the browser) or as a "snap" (filetype .snp).
This latter type is specifically for web viewing and requires the user...
I'm unclear on one thing; when the service stops serving pages...
1. are ALL pages (including HTML and images) no longer served, or only ASP pages? (i.e. is ASP.DLL involved or not).
2. are only pages that actually hit a database effected, or any 'ol ASP page? (e.g. is the problem related...
There used to be an ISAPI called cookie-monster. It will substituted cgi parms where cookies would otherwise be used, parsing outbound HTML adding the session info as a cgi parm (e.g. somepage.asp?sessionid=12345) on the way out and removing it on the way but adding cookie headers as if the user...
Tarn has it right; something, however innocent was output prior to the response.redirect. Anything that's not between <% and %> and prior to the redirect would produce this result.
e.g. ...
<%option explicit%>
<!-- This is an HTML Comment -->
<%response.redirect "somewhere.htm"%>...
Hate to rain on your parade, but IP addresses are a poor means of identifying a voter for two reasons; proxies and Dynamic Host Configuration Protocol (DHCP).
Proxies:
All the folks on an Intranet that access the Internet via a proxy server, or a small number of proxy servers, will look like...
Can't say that I am. Signing off for awhile. Going skiing and wont be back for a few day.
Sorry to say, I expect your ojective of only having to format a single email body is not going to pan out.
Good luck.
Not certain. May reply on how smart the email client is. My guess is yes, the recipinet with email client not able to process HTML sees all (and hates it).
Is the problem now reduced to "How do I create the non-html version of the text to send?" Sorta depends on how you go about...
In CDONTS the format for specifying the treatment of the body text is...
objMail.BodyFormat = 0
That should cause the appropriate header to be generated with the email so that any email client able to process body text as HTML will do so.
The default for BodyFormat is 1, which simply means...
What is the "Mailto" command within an <a href= tag? I'm familiar with using "mailto" as a protocol (like http) to specifiy a recipient address for a link that launch the user's email client.
If there is a way to specify the body of that message, I'd love hear about it...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.