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: sense
  • Order by date
  1. sense

    Extract Date from DateTime

    Hmm, NoCool, you raise a good point re: performance issues between DateDiff and BETWEEN... Never woulda foreseen that. In fact I would have expected the opposite considering the datatype conversion. Regardless, don't forget that BETWEEN is inclusive and converting a string without a specified...
  2. sense

    Extract Date from DateTime

    I find DateDiff a very useful function. Here you would say "where DateDiff(dd, StatDate, getDate()) = 0"
  3. sense

    Passing form variable to JavaScript/ASP function

    Try this : <form name=&quot;main&quot; action=&quot;post&quot;> <input type=&quot;text&quot; name=&quot;empnum&quot; value=&quot;<%= Request(&quot;empnum&quot;) %>&quot; onBlur=&quot;main.submit();return false;&quot;> [...] The moment you tab out of the empnum input box the form will be...
  4. sense

    3-D Query Analyzer?

    Hi, everyone. I'm a newbie to the forum but so far am enjoying the dialog. I have a &quot;wouldn't-it-be-cool-if&quot; idea to share: A 3-dimensional version of Query Analyzer that would display a new &quot;plane&quot; for each data set of a multiple join, and show via some sort of color...
  5. sense

    GET and POST - Probably Simple

    For argument's sake: I know it's bad form, and you'll take a minor performance hit, but why not just evaluate Request(&quot;x&quot;), without specifying the method? I believe IIS will look in .querystring first, then .form, (or vice versa, I forget which) until it finds the item.

Part and Inventory Search

Back
Top