Questions tagged as 'asp'

1
answer

Make a replace case insensitive in Classic ASP (VBScript)

I have the string below: texto = "Meu texto" I would like to make a replace in the word "My" and return it in bold. The result would look like this: My text However, replace is case sensitive, that is, if I use replace(texto,"meu...
asked by 31.07.2017 / 04:03
2
answers

How to implement google reCAPTCHA using classic asp

Hello, I can not deploy recaptcha using classic ASP . The tips of the google site are confusing me and I can not implement. Could someone pass me a "be a ba" with the steps? The keys I already have!     
asked by 15.12.2015 / 12:53
1
answer

Error: procedure or function has too many arguments specified

Criei uma procedure para popular uma grid view: create procedure [dbo].[spc_listaafiliadosadmin] ( @nome varchar(100), @login varchar(100), @cpf varchar(100) ) as begin if(@nome is not null) begin sele...
asked by 18.09.2015 / 21:05
1
answer

Tooltip does not work dynamically

Look at this line: response.write "<span data-toggle='tooltip' data-original-title='" & TitleBadge & "' style='margin-right:3px;'>" This line is inside a file that is called via ajax. If I put it inside the html: <span da...
asked by 01.07.2015 / 01:20
1
answer

Asp classic with Asp .net

I have a Asp net project and I would like to take a page from another project, but it is asp classic, I did some research and I saw that I could do this "merge", but no one said for sure how to do it. Could someone help? The only solution they s...
asked by 01.10.2015 / 19:18
1
answer

Disable date in Datepicker from SQL Server table

I have a system in Classic ASP, where I have a scheduling schedule. I need to disable the dates included in the holidays and compensations table (meeting_id and date). I do not know how to do this select to populate an array of unavailable dates...
asked by 06.08.2015 / 16:28
2
answers

Server changes have no effect

I have an application running in C # with .NET 4.5 on IIS 8. To editing a Controller (which is a .cs file). However, I edited some things on this Controller and I saw that these changes were not spreading. I tried to edit the Action of this C...
asked by 13.04.2015 / 14:27
1
answer

Which version of visual studio does classic asp support?

<HTML> <HEAD> <TITLE>Seu título aqui</TITLE> </HEAD> <BODY BGCOLOR="FFFFFF"> <% response.write("Hello world") %> </BODY> </HTML>     
asked by 15.05.2015 / 21:14
1
answer

IIS - Directory Access Denied

I'm using windows server 2008 and IIS 6.1, I have a service that needs to access files in a particular directory, but I do not have access. What do I need to configure to gain access? AfteraddingAdministratorastheuser,theapplicationsaystha...
asked by 26.11.2014 / 02:04
2
answers

EF core procedure call

I'm trying to use the entity-framework -core and I'm having a problem, I need to call a procedure : var status = _context.Set<Usuario>().FromSql("exec LoginUsuario @chave='ROBr', @senha=null,@fonteConfiavel=0").ToList(); Error...
asked by 30.05.2018 / 19:15