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 Wanet Telecoms Ltd 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: *

  • Users: lottastuff
  • Order by date
  1. lottastuff

    basic javascript help, document.referrer

    You might find ... <a HREF=&quot;javascript:history.back()&quot;> to be a better fit for your purposes, and simpler.
  2. lottastuff

    how to dynamically reduce dropdown list items?

    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=&quot;content-type&quot; content=&quot;text/html; charset=ISO-8859-1&quot;> </head> <body> <br> <form...
  3. lottastuff

    ASP is being blamed help

    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...
  4. lottastuff

    Server.CreateObject vs &quot;New&quot; object

    http://msdn.microsoft.com/library/en-us/script56/html/vsstmclass.asp?frame=true
  5. lottastuff

    previewing a page before submission

    When the user hits the &quot;Yes, Submit&quot; 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...
  6. lottastuff

    Server.CreateObject vs &quot;New&quot; object

    The Set rs1 = New objRO syntax is reserved for &quot;late bound&quot; objects, i.e. those created using the &quot;class&quot; statement. See the documenation on the &quot;class&quot; statement for the lowdown.
  7. lottastuff

    Creating a printable report

    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 &quot;snap&quot; (filetype .snp). This latter type is specifically for web viewing and requires the user...
  8. lottastuff

    ASP is being blamed help

    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...
  9. lottastuff

    How does server recognise new session?

    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...
  10. lottastuff

    VBScript - Basic Response.Redirect

    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 &quot;somewhere.htm&quot;%>...
  11. lottastuff

    How to get IP address

    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...
  12. lottastuff

    Plain text vs HTML email

    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.
  13. lottastuff

    Plain text vs HTML email

    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 &quot;How do I create the non-html version of the text to send?&quot; Sorta depends on how you go about...
  14. lottastuff

    Plain text vs HTML email

    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...
  15. lottastuff

    max size on body field in mailto (within a href)

    What is the &quot;Mailto&quot; command within an <a href= tag? I'm familiar with using &quot;mailto&quot; 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...
  16. lottastuff

    Plain text vs HTML email

    Sorta depends on what mechanism you use for initiating the email. If you can generate what amounts to two distribution lists, one for the folks that can accept HTML, another for those that cannot, then your problem is solved. If you are sending the email via any of the many email components...
  17. lottastuff

    How to Send Email Using ASP

    This question seems to come up quite a bit, and the answer depends on which email component your web server makes available. Below is code for four widely used components as well as a simple method for determining which component you have access to (assuming it's not easiest to just ask your...
  18. lottastuff

    Sending mail through ASP

    Jeese guys. After some 43 threads that match the words &quot;Sending Email via ASP&quot; in this forum, hasn't ANYBODY made an FAQ to address the various ways to do this oft asked for task? I've seen seperate notes with example code for: SMTPsvg Persits aspmail cdonts Hasn't anyone pulled all...
  19. lottastuff

    How can I get the last name only from a full name string?

    Try this: <% Dim sFullname, sFirstName, sMiddleName, sLastName sFullName = &quot;John J Finklehymer&quot; sFirstName = left(sFullName, instr(sFullName, &quot; &quot;)) sLastName = mid(sFullName, InStrRev(sFullName, &quot; &quot;)) sMiddleName = mid(sFullName, len(sFirstName)+1...
  20. lottastuff

    Topic of Discussion -- Cookies &amp; Session

    Alternatively, in an include used on all pages OTHER than your first/home page, (like maybe your site uses a masthead to display a logo and some common navigation links), include a block of code prior to displaying any HTML that does the following: <% Dim intPos ' As Integer intPos =...

Part and Inventory Search

Back
Top