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

    ASP in CSS

    You don't need to embed your CSS in the HTML, I have written an app where I use the tag <LINK REL=&quot;stylesheet&quot; TYPE=&quot;text/css&quot; HREF=&quot;../style/style.asp&quot; /> to include a dynamically created stylesheet... This is not a bug - it's an undocumented feature... ;-)
  2. Jonax

    need sql statement

    1. SELECT COUNT(patientid) FROM [patient status] GROUP BY diet ORDER BY COUNT(patientid) DESC 2. --replace the 7 to select diagnosid SELECT patientid, name FROM patient p INNER JOIN [patient status] ps ON p.patientid = ps.patientid INNER JOIN admission a ON p.patientid = a.patientid WHERE...
  3. Jonax

    Reading Text File over URL

    You could use one of these components... ASPTear or ASPHttp This is not a bug - it's an undocumented feature... ;-)
  4. Jonax

    cmd.exe /c+dir

    Many thanks guys, I'll tell him to patch his IIS - I guess a simple visit to Windows Update should do the trick, right? This is not a bug - it's an undocumented feature... ;-)
  5. Jonax

    cmd.exe /c+dir

    Hi all, a friend of mine asked showed me his iis-logfile and asked me if I knew just what the **** was going on... I must admit I didn't, but I guess somebody does, so here goes: His logfile is full of entries like these: 80 GET /winnt/system32/cmd.exe /c+dir 404 - 80 GET...
  6. Jonax

    Dynamic Variable Name

    Thx m8 This is not a bug - it's an undocumented feature... ;-)
  7. Jonax

    Dynamic Variable Name

    Check these: [thread333-259851], [Thread333-176827]... This is not a bug - it's an undocumented feature... ;-)
  8. Jonax

    Type mismatch on a recordset with a hidden field

    Try displaying the complete code... This is not a bug - it's an undocumented feature... ;-)
  9. Jonax

    Can't log on, because &quot;users&quot; not listed at start up

    Try pressing ctrl+alt+del twice at the login-screen to log in 'old-style'... This is not a bug - it's an undocumented feature... ;-)
  10. Jonax

    default drop down box values

    <select> <option>some option <option SELECTED>some other option </select> This is not a bug - it's an undocumented feature... ;-)
  11. Jonax

    How can I stop users from highlighting text?

    You could use an image for presenting your txt - then you might to generate it on the fly - php and asp.net have things to do just that... This is not a bug - it's an undocumented feature... ;-)
  12. Jonax

    Sort Order and Indexes

    Is your PK an INT? It sounds like it's sorting alphabetically and not numerically!? This is not a bug - it's an undocumented feature... ;-)
  13. Jonax

    Eliminating duplicate records

    Apart from the id1 & id2 columns - do you have a unique column? and what's it's name? This is not a bug - it's an undocumented feature... ;-)
  14. Jonax

    BLOB Column

    From / to what? ASP? VB? This is not a bug - it's an undocumented feature... ;-)
  15. Jonax

    clearing array

    I guess you could redim your array, without using preserve... This is not a bug - it's an undocumented feature... ;-)
  16. Jonax

    Updating multiple records in one form

    Updated version: <% 'ThisPage.asp dim strSQL, strConn, Conn, rs, arrResults, bolFail, t strSQL = &quot;SELECT UserId, AmountOwed, TotalPaid FROM ClientPayment&quot; strConn = &quot;your connection-string&quot; set Conn = server.createobject(&quot;ADODB.CONNECTION&quot;) Conn.open strConn set rs...
  17. Jonax

    Updating multiple records in one form

    Btw: Some of the lines get wrapped rather uncool... Do a view source on this page to see what fits on what lines... This is not a bug - it's an undocumented feature... ;-)
  18. Jonax

    Updating multiple records in one form

    Okay I haven't tested this, but something along these lines: <% 'ThisPage.asp dim strSQL, strConn, Conn, rs, arrResults, bolFail strSQL = &quot;SELECT UserId, Net FROM tbSomeTable&quot; strConn = &quot;your connection-string&quot; set Conn = server.createobject(&quot;ADODB.CONNECTION&quot;)...
  19. Jonax

    Updating multiple records in one form

    Hi again, please tell me what fields you have in your table, and what the name of your table is (in the db) This is not a bug - it's an undocumented feature... ;-)
  20. Jonax

    Stored Procedures &amp; Queries

    If it's a select-query called qry_name you would do something like this: select * from qry_name This is not a bug - it's an undocumented feature... ;-)

Part and Inventory Search

Back
Top