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 strongm 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: leifoet
  • Content: Threads
  • Order by date
  1. leifoet

    Code does not run in Microsoft Edge - it does in Google Chrome

    Using ASP Classic application code on Windows server. Problem: A drop-down list field filled with records from an Access database and with the following code <select NAME="ActId" style="font-size: 12px;width:600px;"> <% rs.MoveFirst Do While Not rs.EOF %> <%If rs("var_datedif")<0 Then...
  2. leifoet

    How to send HTML emails with ASP classic?

    Until now I also used the following specific CDO-code for this sending. myMail.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2 'Name or IP of remote SMTP server myMail.Configuration.Fields.Item _...
  3. leifoet

    How te filter by date ?

    SQL="SELECT Datum, Number, Action, BInVKP, BUitAKP FROM journal WHERE Datum between 'DD-MM-YYYY' and 'DD-MM-YYYY'" &_ "UNION ALL SELECT Datum, Number, Action, BInVKP, BUitAKP, FROM bnkbk WHERE Datum between ''DD-MM-YYYY' and 'DD-MM-YYYY'' AS RCDet ORDER BY Datum ASC" Filtering the date field...
  4. leifoet

    Error in Select query

    Errormessage : Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC Microsoft Access Driver] Syntax error in query expression '2023_TafelUni.Tafels'. sql = "SELECT 2023_SV999_od.*, 2023_TafelUni.Tafels, "&_ "(Select Sum(Number) FROM 2023_SV999_od) AS TotNumber, "&_...
  5. leifoet

    How can I update the input of a form (rows and columns) to the database in one query ?

    An (existing) form offers the possibility via <option> to change data (presence or absence) of one person - the result is updated to the database via <input>. This works. => My intention is now to have a (fixed) number of people (from the database) go through the above form and then update the...
  6. leifoet

    First execute an input command and only then proceed with displaying the next record of the table

    A table is run through with a 'do while'. Elements of that table are subject to changes that are always entered via an input. Method do while.. display element 1 => input (possible changes) only then display element 2 => input (possible changes) only then display element 3 => input...
  7. leifoet

    How to check if a datatable is empty ?

    How can I check with asp classic code if a datatable is empty (= 0 records) ? Thanks for tips.
  8. leifoet

    Wrong code in a href ?

    application("addressLink") is created in a subprogram (ASP) and contains the following existing (variable) address : report/221.pdf (or report/222.pdf ...) In the main program (ASP) <a href="application("addresslink")">ABCDE</a> shows the contents of the address link : report/221.pdf and not...
  9. leifoet

    How to store decimal numbers in an Access database?

    The storage of numbers with 2 decimals from the HTML- inputform in the Access database fails => decimal digits of the entered number are placed before the decimal point in the field xyz (followed by 00 after the decimal point). Input codes (in the form) <INPUT TYPE="number" step="0.01"...
  10. leifoet

    Using date picker gives an error message, only at application start

    Only at startup, and before pressing the submit button, the code below gives the following error: > Microsoft VBScript runtime error '800a000d' > Mismatch type: 'cdate' (refers to the 'cdate' on the last section of code below) After the first press on the submit button, the requested table...
  11. leifoet

    How to link a condition to a session(&quot;UID&quot;) ?

    For example login session("UID") is 10 In my program xyz.asp this test gives 10 <%response.write session("uid")%> but the following conditions code does not work <%if rsRC("MemberID")=Session("UID") Then%> <p style="color: blue; font-weight: bold; background-color...
  12. leifoet

    Problem: sql-Select with request.form

    application 1: <form name = "list" onSubmit = "return validation (this);" METHOD = "POST" ACTION = "application2.asp" Application2 => 'receives': request.form ("ActID") the value of request.form ("ActID") is (for example) 5 lngRecordNo = Request.Form("ActId") This SQL works perfectly...
  13. leifoet

    How to display an existing date in Input type=&quot;date&quot;?

    Method : initially the existing LEVdate (from the database) should appear - is it no longer correct than a new LEVdate must be entered <input type="date" name="LEVdate" placeholder="yyyy-mm-dd" value="<%=rs("LEVdate")%>" style="border 1px solid red; font-size:13px; color:#0000FF...
  14. leifoet

    How to combine JS and ASP ?

    I am trying to check if a day (of a date) is odd or even - with the code below. If I use the variable var_day instead of a number, nothing happens. Look for a solution Thanks. <% var_day = Day(date()) %> <p id="demo"></p> <script> { var d = ""; d = d + Number.isInteger(var_day)...
  15. leifoet

    How to omit popup permission

    In addition to the access for the authorized users, I try to give access for certain pages to other specific users with a specific login (example code below). To see the specific pages, for each of the created accesses, new users are always asked (once) to unblock the pop-up (for the site). How...
  16. leifoet

    SQL syntax problem

    Given: 2 tables (BookA and BookB) connected to each other by UNION ALL and each table with the same columns: OUT and IN Try to sum the 2 tables in 2 columns OUT and IN (OUT = BookA + BookB / IN = BookA + BookB) The query below gives the following error: Microsoft OLE DB Provider for ODBC...
  17. leifoet

    How to link a progress bar to a download?

    The progress bar example code below starts with the push of a button. Is it possible to have the bar start automatically when downloading a program (like XYZ.asp or ABC.pdf or ...)? Thanks for tips. <!DOCTYPE html> <html> <style> #Progress_Status { width: 50%; background-color...
  18. leifoet

    How to compare (date+time) with now() ?

    <%if (cdate(#12/07/2020#)&" "&cdate("10:28:00"))<=now() then%> does not work Thanks for tips.
  19. leifoet

    How to update the content of radio buttons in a database?

    I am trying to update (save) the contents of radio buttons to an access database table. For this I use this w3-e example Link I linked a SQL update query to it. ... <input type="submit" value="Submit" /> </form> <% if cars<>"" then Response.Write("<p>Your favorite car is: " & cars & "</p>")...
  20. leifoet

    How to combine A HREF with URL

    Problem: Clicking on a hyperlink to open a URL/page. <a href="URL"> Can't find the right code in ASP Thanks for help

Part and Inventory Search

Back
Top