11,399 questions
Score of 0
3 answers
165 views
RegEx Find all words that are NOT in line with a starting Single Quote
This will be used in a Classic ASP (VBScript) project.
I am trying to find the words that are NOT in line with a starting single quote.
Regex example of finding all words.
(\b(CreateObject|Set|Open)\b)...
Score of 10
1 answer
3361 views
Windows 11 update Classic ASP Incompatibility – VBScript/JScript Mix Causes IActiveScript::SetScriptState Exception
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
...
Score of 1
1 answer
110 views
Adding a PDF file to a zip file containing images with JSZIP and jQuery
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/]...
Score of 1
0 answers
91 views
Httponly cookies expire soon in classic asp
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 ...
Score of 0
0 answers
98 views
Calling a MySQL parameterised stored procedure using VBS and ADODB returns unexpected random values in the OUT parameters [duplicate]
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 ...
Score of 1
1 answer
164 views
How to use browscap.dll on Windows Server running IIS and Classic ASP?
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 ...
Score of 1
0 answers
73 views
Classic ASP & Google Analytic : How do I set up the tracking properties for my website
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], ...
Score of 0
1 answer
157 views
How do I get aspPdf to write special characters like æ, ø and å?
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"--&...
Score of 1
0 answers
291 views
Classic ASP JScript Broken after Windows 11 24H2 [duplicate]
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" &...
Score of 2
0 answers
34 views
Classic ASP: Discern VBScript arrays in JScript code [duplicate]
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 === '...
Score of 0
0 answers
52 views
Classic ASP User Login in Windows 2003 server [duplicate]
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 ...
Score of 0
3 answers
165 views
Request form checking length and two words
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 ...
Score of 0
1 answer
598 views
How to setup Visual Studios 2022 to display vbscript code blocks the same as Visual Studios 2019
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 ...
Score of 0
2 answers
95 views
Classic ASP and json2.js: how to access keys with special characters?
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:
&...
Score of -1
1 answer
199 views
asp classic - asp.net - Need a Large File Download Script that downloads in chunks that does not load the entire file into memory [duplicate]
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 ...