Questions tagged [asp-classic]

ASP, also referred to as Classic ASP or ASP Classic, was the pioneering server-side script-engine created by Microsoft for generating dynamic web pages. The advent of ASP.NET resulted in the application of the phrase Classic ASP specifically for the initial technology.

Retrieving HTTP parameters in Classic ASP through JSON data format

My website is built using classic asp and I am in need of creating a page that can receive a callback from a third-party site with three parameters sent in JSON format. I then have to store these values in a database. I don't have any prior experienc ...

Is there a way I can detect a browser timeout and display a custom error message?

My webpage in classic asp contains a link to a local IP address, shown below: <a href="http://192.168.1.89">Link</a> When the local IP address is not available, the web browser eventually times out and shows its own error message. I ...

In search of an effortless solution to fetch the hostname, computer name, and IPV6 address utilizing ASP or VB6

In search of an effortless method to retrieve the computer name, host name, and ipv6 ipaddress using vb6, asp, or jQuery. The primary motivation for this task is to ensure comprehensive logging of crucial security information. ...

Issue with Calendar Control not loading in Internet Explorer 9 when using ASP

I have been trying to incorporate a calendar control in my code that selects a date and returns it to a text field. It worked perfectly fine on browsers prior to IE 8, but I'm facing issues with IE 9. Can someone help me troubleshoot this problem and ...

AXE - Asp Xtreme Evolution - A cutting-edge JSON parser designed specifically for classic ASP development

Is there anyone who has successfully used this and got it to work? I'm encountering some issues with a JScript error and I'm unsure about how to resolve it. For more information on the product, you can refer to the following links. It's a J ...

Ensure that the alert for an Ajax JSON record count remains active when the count is

Trying out Ajax JSON for the first time has been a bit tricky. Even though I hard coded "Record: 1" on the server side, it keeps alerting me with a total record of 0. I'm not sure where I went wrong. Could it be an issue with how I passed the array da ...

Change an ASP page into an image format such as JPEG or PNG

Seeking assistance to convert my classic ASP page containing label controls styled with positioning to images in JPG or PNG format, and then send them using CDO. Using Dreamweaver for this task. Any help would be greatly appreciated. ...

Revamp website to meet modern Web 2.0 standards

I am looking to revamp my old ASP classic website to meet the modern standards of web2.0 using PHP. Currently, my main website page features sections that need to display the latest updates such as recent forum threads, news articles, and user comments. In ...

The issue of height and width always being zero in Chrome when using Classic ASP with JavaScript

Within my markup, I have an image field that I am setting the source for using JavaScript. I am in need of its height and width, so I utilized the image.height() and image.width() methods. Despite working properly in Internet Explorer, these methods do not ...

Converting Json data to SQL in ASP classic

Struggling to find a solution using ASP Classic, as an external server will be sending Json data to my site at www.mypage.com/getjson.asp {"Userid":"112233","Member":Tom} I need to fetch this data and check if the Userid already exists in SQL. If it does ...

What is the functionality behind a free hosting website?

Is anyone familiar with websites like Hostinghood, where users can create a subdomain and upload HTML, CSS, etc.? I'm curious about how they operate and how I can create a similar site. This is my first question here, so please respond instead of disl ...

Transmit an Array using Ajax and retrieve it on an ASP Classic page

I am facing a challenge where I need to pass an array using AJAX on an ASP page. After trying to send it as GET method and checking the data being received, I noticed that only the LAST record of the array is being processed by ASP. How can I successfu ...

Are your file uploaders malfunctioning by saving empty image files?

I am currently working on a file uploader using JavaScript and Classic ASP. The process involves importing an image into a canvas, converting it to a base64 URL, and then sending that URL to the ASP script for decoding and downloading. Although my AJAX re ...

Avoid making redundant web service requests using JQuery AJAX

As I incorporate jQuery into my Classic ASP pages, I'm looking for a solution to prevent users from clicking buttons multiple times and making duplicate server queries. Can anyone suggest an efficient method to achieve this? ...

I am hoping for the outcome to be directed to the homepage

I'm struggling to figure this out, as I am new to classic ASP and JavaScript. I hope someone can help me understand. I want to display the response.write on the main.asp (or the result) page, but each time I try, it redirects to pass.asp on a different pag ...

Exploring the Interplay of Classic ASP and AJAX Variables References

When the page loads, I check for an empty session variable. If it is empty, I trigger an AJAX function to include a hidden login form with ASP script that becomes visible through JavaScript. This part of the process works smoothly. Upon submitting the for ...

Transforming a few lines of PHP header code to Classic ASP

I am encountering an issue with two files that I have: A locally hosted project coded in Ionic/AngularJS that is attempting to retrieve JSON data from an ASP file. An external ASP File which generates JSON data based on database values from a query. Eve ...

Incorporating Checkbox Value into Textbox with classic ASP and jQuery

Here is a glimpse of the code I've written: response.write "<th align=left><font size=2>" response.write "1. <input type=checkbox class='checkboxes' value='ORG'>Organization" response.write "</font> ...

What is the best way to customize the color of selected items in a RadComboBox using CSS?

I'm curious if it's possible to modify the "background-color" value for the selected items in a radCombobox. Below is the CSS code I've been using: (Despite being able to change other elements, I can't seem to alter the color of highli ...

Open the URL in a new tab based on certain conditions

Currently, my page redirects if a specific checkbox is selected and the "submit" button is clicked: if request.Form("myCheckbox") = "on" then response.Redirect("/newPage.asp?txt="staff"") else response.Redirect("/thisPage.asp") end if I ...

"Resolving the problem of converting JSON to a C# class with integer class name

Received a JSON response with the following structure: { "serp": { "1": { "href": "href1.com", "url": "url1.com" }, "2": { "href": "href2.com", "url": "url2.com" ...

Custom stylesheet for individual users?

On my website, users can pick a template for their webpage. After selecting a template, I would like them to have the ability to customize certain styles like the font color. Is there a way to achieve this? I was thinking about saving the user's customiz ...