Questions tagged as 'asp'

1
answer

Read complex XML with asp to embed BD

My main problem is that XML is not uniform, it does not always have the same nodes sequence. It is a huge XML, with 600mil lines per day, basically the structure is always the same up to a certain level of node descentes. Until the Item Code...
asked by 31.08.2017 / 18:04
1
answer

How to import the Chart.js library into an ASP file?

I'm trying to insert a chart with Chart.js into an ASP page (not ASP.NET). I saw some tutorials from Chart.js itself and found the following statement:    You can download the latest version of Chart.js from the GitHub releases.       [...]...
asked by 22.06.2017 / 19:53
1
answer

How to use my ASP site (via Script) to upload a txt that is on another server by FTP address?

Can anyone help me to do an asp script to upload using my site in asp from a txt file by an ftp address from any other server?     
asked by 05.06.2017 / 16:56
0
answers

Sending SMS via WebSite [duplicate]

I am developing a delivery website where I would like the customer to send an SMS to his cell phone when the customer completes the order. Would it have some form (free of preference, but can be paid as well) to do this using some asp scrip...
asked by 27.04.2017 / 15:18
2
answers

Sending e-mail via CDOSYSMail

I have a email sending code, which I get the sender via request.form and put it inside a variable like this: Dim nome, emailremetente nome = trim(request.form("name")) emailremetente = trim(request.form("email")) And in this line I ente...
asked by 03.05.2017 / 15:35
1
answer

Receive parameter and depending on the value execute a specific procedure

I have a system in Classic Asp, and I need to execute a specific SQL Server procedure, according to a parameter that the system receives from a form. I tried to do this: if tipoagenda = 1 then ssql1 = "exec VerificaDataDisponivel" elseif...
asked by 21.02.2017 / 18:29
0
answers

HTML Form Does Not Work on Data Change

The "Insert" and "Delete" forms are interacting with the data from the MySQL database table. Except The form manager-registry that has the "Change" registry function: <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!DOCTYPE html PUBLIC "-/...
asked by 08.02.2017 / 12:09
0
answers

ASP Nuget Package

I give maintenance in an ASP (legacy is legacy) system that I have difficulty in controlling versions and system updates. Thinking about how to improve this and gain stability for the system between versions I noticed that Nuget might be a go...
asked by 05.01.2017 / 18:28
1
answer

Problems with asp, retrieval of value returned from a stored procedure

Good afternoon, I'm having trouble retrieving a value returned in a stored procedure. The database is sql server. The procedure executes an insert and returns the id of this data, however I can not retrieve the id value in asp. <% sql...
asked by 07.12.2016 / 20:37
0
answers

Using Store Procedure for User Authentication

I have the following Store Procedure in my MySQL database, SP_Autentica : BEGIN SET @id = (SELECT ID FROM userdata WHERE Username = user AND Password = pass); END In ASP code, conn.asp : connectstr = "Driver={MySQL ODBC...
asked by 11.11.2016 / 01:37