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...
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 _...
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...
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, "&_...
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...
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...
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...
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"...
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...
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...
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...
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)...
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...
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...
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...
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>")...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.