Posts by Helio Souza • 65 points
7 posts
-
0
votes1
answer478
viewsQ: Passing variables from AJAX to ASP
I have a contact form that uses an AJAX function to validate and return a success PARAMETER that allows me to send the message WITHOUT the visitor leaving the contact page. Normally, I use these…
-
0
votes2
answers501
viewsA: SQL - query True or False records
Problem solved. Just filter the records after selecting them: sSQL = "Select * from Usuarios order by nome asc" set RStemp = createobject("adodb.recordset") set RStemp.activeconnection = usersDB…
-
1
votes2
answers501
viewsQ: SQL - query True or False records
I am mounting a simple page that show records marked as blocked by admin. The field is user-block and the options are FALSE or TRUE. I thought the Query would be: "Select * from Usuarios WHERE…
-
1
votes1
answer162
viewsQ: Customization of Jquery Custombox
Fala galera, I found a very good plugin for lightbox that works with the modal windows of Bootstrap 3. Documentation is limited and can be found at http://dixso.github.io/custombox/ What I need is…
-
0
votes3
answers857
viewsA: Delete Confirmation Prompt with Javascript and ASP
Thanks guys, I put together elements of the two answers. From Moshmage the cConfirm function. From w35l3y the hint about leaving the call to function OUTSIDE of the ASP block and the treatment of…
javascriptanswered Helio Souza 65 -
2
votes3
answers857
viewsQ: Delete Confirmation Prompt with Javascript and ASP
I have a list of titles presented dynamically to the user: [ x ] - [ + ] - Título 1 [ x ] - [ + ] - Título 2 [ x ] - [ + ] - Título 3 [ x ] - [ + ] - Título 4 The number of items is variable and the…
javascriptasked Helio Souza 65 -
1
votes2
answers2449
viewsQ: How to change character encoding in phpmailer
I don’t know anything about PHP. Nothing. Zero. Niente. It turns out that a form on a page of a simple HTML client is processed by Phpmailer. It works like a beauty, even if I have no idea how. Only…