Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
218 views

I use SHA512 to encrypt salt and password and save it in a MYSQL database. The input salt+pwd gets hashed and saved successfully no matter the characters. But if a password contains one or more of ...
Morten Brockhoff's user avatar
7 votes
1 answer
2k views

After updating to Windows 11 on June 2, 2025, I'm experiencing major issues with legacy Classic ASP applications on IIS that make use of both VBScript and JScript on the server side. json library ...
omerix's user avatar
  • 71
1 vote
1 answer
97 views

I create a zip file containing images (with their urls extracted server-side via classic asp code) and it works fine. I was inspired by this excellent example [https://jsfiddle.net/jaitsujin/zrdgsjht/]...
Luciano Gaudenzio's user avatar
1 vote
0 answers
67 views

I tried to secure an old website in classic asp which was using this code to generate a cookie but does not care about httponly and secure , however the expiration date was working fine and cookies ...
Ali Sheikhpour's user avatar
0 votes
0 answers
90 views

MySQL (v5.7.44). Classic ASP using VBS, ADODB. Not a newbie, and hoping this is not because of developing bad habits over the years, but after 3 weeks of trying this and that, I'm hoping someone can ...
AndyAccess's user avatar
1 vote
1 answer
141 views

After trying fingerprinting that requires that the visitor use a web browser with JavaScript enabled, I thought that I would try using browscap... browscap.ini and browscap.dll are available on all ...
WilliamK's user avatar
  • 692
1 vote
0 answers
62 views

I'm maintaining a classic asp website and I'm trying to implement Google Analytic on one of the pages. And I have 2 types of javascript codes, which I used inside my classic asp. With [Code 1], ...
Punreach Rany's user avatar
0 votes
1 answer
140 views

I am using aspPdf to convert a html page into a pdf file. And it is working fine, except from the special characters æ, ø and å. I have this: <!--#include file="include/connectOpen.asp"--&...
Sanne Faurholt's user avatar
1 vote
0 answers
272 views

I've just upgraded windows 11 to 24H2. I write JScript in Classic ASP running on IIS. After upgrading none of my code works anymore. I get Catastrophic Error and then Script Engine Exception" &...
Simon Sawyer's user avatar
2 votes
0 answers
24 views

I have a function in JScript that accepts a string or an array as parameter: <script language="JScript" runat="server"> function handleThis(what) { if (typeof what === '...
Avenger's user avatar
  • 404
0 votes
0 answers
48 views

I have a Classic ASP application running from Windows 2003 server which I am moving to Windows 2022 server. I have configured the application and the login page is loading. But post submitting it is ...
shilpa v's user avatar
0 votes
3 answers
158 views

I have this code on my register page for a displayed name: If (Len(Request.Form("name")) < 3) Or (Len(Request.Form("name")) > 50) Then ...
Ian's user avatar
  • 29
0 votes
0 answers
35 views

I have a classic ASP page that needs a modal to pop up asking people to sign up to our mailing list. If they sign up, a cookie is set. This page checks for that cookie and doesn't harass the user if ...
Bob's user avatar
  • 1
0 votes
1 answer
489 views

I am trying to replicate my editor view in VS 2022 to be how it looks in VS 2019. Here is how it looks in VS 2022 versus the coloring found in VS 2019 I have spent quite a bit of time within the ...
tayovm's user avatar
  • 11
0 votes
2 answers
76 views

In this answer: https://stackoverflow.com/a/1021848/5280471 it is suggested to use a "language-wrapping" technique to implement JSON parsing by importing a json2.js JavaScript file like so: &...
Avenger's user avatar
  • 404
-1 votes
1 answer
155 views

I have run into an issue that I cannot find a solution for. Specs: ESXi 6.5 Windows 2016 Datacenter ARR Web Farm --Current Temp Setup (Both systems have almost identical settings.) 1 ARR Server (8GB ...
CodingEE's user avatar
  • 325
1 vote
2 answers
275 views

Using Classic ASP, I want to check if a given IP is within an IP range in CIDR (e.g. 192.168.0.0/24). There are already some questions covering scenarios where I could get IP ranges from their CIDR, ...
Avenger's user avatar
  • 404
-1 votes
1 answer
100 views

I am trying to update the contents of a particular dropdown box, based on the selection of another dropdown box. The contents of these boxes is coming from tables in an MSSQL database. Basically, I ...
kingklick's user avatar
1 vote
1 answer
233 views

I have this code and it works fine on my local machine. I moved it to our development server and when .Send is getting the error -2147483638 The data necessary to complete this operation is not yet ...
Spottedbass's user avatar
1 vote
1 answer
190 views

I've today upgraded from Windows 7 to Windows 10. I've installed IIS (10) and moved the various sites into the the default folder (wwwroot) Typing 'http://localhost/warweb/' in the browser opens the ...
chtyrone's user avatar
0 votes
0 answers
48 views

I'm receiving the error below once my code reaches rs.Update and I'm not sure why. It was working on a previous server but the error started after I migrated to a newer site & sql server. ...
BrettKB's user avatar
  • 205
-2 votes
1 answer
104 views

Don't know if title exactly fit what I need to know. I searched for an answer in Stackoverflow (and Internet too) without success (maybe I was not able to find it). I have a web app written many years ...
boerig's user avatar
  • 17
0 votes
1 answer
64 views

I try to create a post ajax request with data using Axios when the server side is ASP classic and the client side is React using type script this is my server side : <% Response.AddHeader "...
hedbisker's user avatar
  • 327
0 votes
2 answers
97 views

I try to call a simple ajax request from client side to server side, but I have a problem with it when I press the button I have no change in this page even when I got the alert("OK!"); and ...
hedbisker's user avatar
  • 327
0 votes
0 answers
78 views

I try to create a simple page using ASP Classic without database and basic login I have a table with a list of cars that I can book for the user and the user can unbook the car this website should be ...
hedbisker's user avatar
  • 327
0 votes
0 answers
44 views

I'm migrating an ASP application from Windows Server 2003 to Windows Server 2016, with an Oracle database located on another server. I have already installed all the extensions that the application ...
felipe Reis's user avatar
0 votes
0 answers
74 views

With an SQL Server table set up as A INT B VARCHAR(MAX) C INT And accessessing this in ASP Classic set RS = oConn.Execute("SELECT A,B,C FROM Table") RS("A") returns A RS("B&...
user3597269's user avatar
0 votes
0 answers
119 views

I am trying to create a filter to display records assigned to multiple groups not just one as currently set up below. Maybe via a checkbox. Any assistance would be appreciated. ASP classic with JS ...
P1nkPanther's user avatar
0 votes
0 answers
109 views

I'm in the process of trying to migrate a really old web application to a new Windows Server 2019 box. The old application is coded in ASP and uses <%@ LANGUAGE = VBScript.Encrypt %> As the ...
Joseph Quinn's user avatar
-2 votes
1 answer
445 views

I have a Classic ASP application that several users log into from several different physical store locations. They are all hitting the same database and web server of course. But I would like to know ...
Bigtime's user avatar
1 vote
1 answer
116 views

While debugging I found this weird thing in a custom RoundMid() function : test = 148.325 * 100 + 0.5 Response.Write test ' Returns 14833 Response.Write Fix(test) ' Returns 14832 ??????? ...
Vaka's user avatar
  • 51
0 votes
0 answers
60 views

I have inherited a website that has a mix of ASP.Net and ASP Classic. I'm fine with the ASP.Net, but the ASP Classic, I haven't used in at least 20 years (probably longer!) It took me forever to get ...
El Queso's user avatar
2 votes
2 answers
780 views

I built up a page on my website as a place to perform testing of functions that I write (30 or 40 of them to date). I use a drop-down box to list the functions out by function name. When one of ...
Bjorgen Eatinger's user avatar
1 vote
0 answers
90 views

I want to stream the response of the actual page in a file. This is what I do for creating the file : set fso=server.CreateObject("Scripting.FileSystemObject") fic= session("...
Berrouayel Farid's user avatar
-1 votes
2 answers
103 views

the www_root folder, i set the full access permission with these user / user group: administrators system iis AppPool\DefaultAppPool the site in iis, basic settings, connect as -> 'iis AppPool\...
user1928432's user avatar
1 vote
2 answers
120 views

I need to use VBScript to insert an "and" into a string before the last item in a comma-separated list. strList = "512, 66, 1820, 1235, 7, 4918" needs to become... strReList = &...
nbardach's user avatar
  • 175
-1 votes
1 answer
580 views

In classic ASP pages, I am trying to connect SQL server 2k22 using the ADODB connection and MSOLEDBSQL19 driver(provider). On the SQL Server Side, I enabled the Force encryption=Yes and client-side(...
Mangesh Auti's user avatar
  • 1,145
-1 votes
1 answer
154 views

We have a client we need to communicate with and their API page only supports NTLM authentication. Our site runs classic ASP (jScript) so forgive that the syntax is slightly different than the what ...
Code Ninja's user avatar
1 vote
1 answer
105 views

I have a process where I have created a polling function that executes an XMLHttpRequest via VBScript. The request gets an ASP Classic page which checks an MSSQL table for newly inserted records and ...
Benzine's user avatar
  • 566
-1 votes
1 answer
165 views

I am integrating Paypal's Checkout API into a legacy Classic ASP site. When sending via this front end js: var postData = {paypal_order_check: 1, order_id: orderData.id}; fetch('...
kneidels's user avatar
  • 1,062
0 votes
2 answers
617 views

Apologies in advance, I'm new to CORS so might be something I am missing. I'm attempting within my current localhost to setup a CORS from one localhost port to another localhost port. I've confirmed ...
SpencerAl's user avatar
-3 votes
1 answer
148 views

services including http and .asp (diagnostic) page within a .net application throws 500 internal server error intermittently, the application pool running the service(s) uses a gmsa as an ...
Avinash Mvrick's user avatar
-1 votes
1 answer
101 views

I have the below code, how would i replace the '1' within the below with a variable ? Set objorderline1 = objXML.createElement("OrderLine") Set objorderline1att = objXML.createAttribute(&...
Emma's user avatar
  • 562
1 vote
1 answer
78 views

I have looked at all of the similar questions, and they, unless I missed something, do not answer my question; so here goes: I want to open a text file on my webpage; but The title is a passed ...
Penguin's user avatar
  • 23
-2 votes
1 answer
96 views

I have this rewrite rule defined in the web.config file on my site: <rule name="RedirectWwwToNonWww" enabled="true" stopProcessing="false"> <match url="(.*...
4532066's user avatar
  • 2,142
0 votes
1 answer
136 views

This application needs to be recycled at least 3 times a day, currently it's a very big problem. This is not a large-scale logical application, it is primarily used for uploading and downloading ...
Maduwantha Hettiarachchi's user avatar
-1 votes
1 answer
103 views

i am working with asp classic with sql server , i want to change my sql statment to prevent injection my sql statment this is my sql statment it is run ok %><!--#include file="Config.asp&...
abdo Zurg's user avatar
2 votes
1 answer
218 views

I need to still work with classic asp and I faced with an existing application an issue with Application_OnEnd and Session_OnEnd events - i.e. the are not working. OnStart-events work normally. I do ...
M.Y.'s user avatar
  • 629
1 vote
1 answer
684 views

I wonder if anyone have faced the same issue: Server sent eventd (SSE) are not working in Classic Asp on IIS (version 10) as they used to. It seems that the issue has appeared with modern browsers ...
M.Y.'s user avatar
  • 629
0 votes
0 answers
51 views

I am getting the following Error in this parameterized query using Classic ASP. ADODB.Command error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one ...
Babar's user avatar
  • 75

1
2 3 4 5
229