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: *

  • Users: HoppingMadRabbit
  • Order by date
  1. HoppingMadRabbit

    Re: Word Wrap

    How are you checking the wrapping? Through response.write or when recieving the email? And are you creating the email with cdont/cdo or some third party component? João.
  2. HoppingMadRabbit

    ASP + SQL, please help!

    Just a suggestion... Try outputting each column separatly and see if there are characters or character combinations in those columns that might prevent displaying the others. In case of doubt, try seeing document source code after output, if as stfarm sugests, there are quotes in the fields...
  3. HoppingMadRabbit

    Re: Word Wrap

    Could you post the code creating the email? It may be something in your own code. João.
  4. HoppingMadRabbit

    Re: Word Wrap

    If you are sending HTML email you can avoid it by generating an anchor tag: <a href=&quot;YourUrlHere&quot;>Click here to visit.</a> Either than that, I believe it is a mail client text wrapping issue and you can't prevent it from happening (although I'm not 100% sure...). Of course you could...
  5. HoppingMadRabbit

    set getURL to a dialog window

    Try using getURL(&quot;http://www.xxx.com/xx.htm&quot;,&quot;_self&quot;); João.
  6. HoppingMadRabbit

    How do I do this?

    You could try using two MovieClips in the main timeline, one with the fading images and another with the text. João.
  7. HoppingMadRabbit

    True Dynamic Includes using SELECT CASE

    talon121a, it is indeed more secure, I took the case else condition for just another regular case condition, my mistake... should have looked closer, sorry, I agree with you. Also it does speed up the logic not having to switch from ASP to HTML. One other method to consider is using...
  8. HoppingMadRabbit

    True Dynamic Includes using SELECT CASE

    Why use Case when you can achieve the same result with just one line of code? Am I missing something? João.
  9. HoppingMadRabbit

    True Dynamic Includes using SELECT CASE

    You could also use the following: <% Server.Execute(Request.QueryString(&quot;page&quot;) & &quot;.asp&quot;) %> João.
  10. HoppingMadRabbit

    Multi Select not sending all selected items to DB

    Thanks, but I finally solved it with javascript, using an hidden field and the onBlur event for the select. Basically, I'm processing the values client-side before submitting the form this goes in the <head> section: <script language=&quot;JavaScript&quot;> function getValue(){ var obj1 =...
  11. HoppingMadRabbit

    Multi Select not sending all selected items to DB

    I was wondering if anyone got any workaround to the problem. This seems to be an issue with the form enctype, which, when set to multipart/form-data, results in sending only the first option selected. When not set at all (i.e. default enctype), it does pass all options selected (comma separated...

Part and Inventory Search

Back
Top