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

  1. santiago

    Better written Select with Subquery

    Thanks for the tips. Regards.
  2. santiago

    Better written Select with Subquery

    Can anybody see if this query can be written better? SELECT a.AccountNbr, a.AccountName, (SELECT SUM(b.DebitAmt) FROM b.Transactions as b WHERE b.acctid = a.acctid AND DatePart(yyyy, b.TransactionDate) = 2004) as Debit, (SELECT SUM(b.CreditAmt) FROM Transactions...
  3. santiago

    What happened to ServerVariables(LOGON_USER)

    Does anybody know how to get ServerVariables(LOGON_USER) in ASP.NET? I have an intranet application in classic ASP wherein I get the ntlogin of the user using ServerVariables(LOGON_USER) and then check their access rights to the application. This way, the user does not need to enter separate...
  4. santiago

    Date Editing

    Thanks for the example.<br><br>However,&nbsp;&nbsp;I do not believe it will solve my main problem.&nbsp;&nbsp;The example script accepts 15/35/1966 as a valid date.&nbsp;&nbsp;I need to be able to validate that the date entered is a proper date.
  5. santiago

    Date Editing

    I have an text input field in my form that requires a valid date input (for birthdate).&nbsp;&nbsp;How would I do a date validation of this field in Javascript?

Part and Inventory Search

Back
Top