setting_url_parameters_classic_asp

Tool to add parameters to a url before a redirect in Classic ASP.

https://github.com/r0mb0/setting_url_parameters_classic_asp

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.2%) to scientific vocabulary

Keywords

asp-classic class classic-asp italian-developers library r0mb0 url url-parameters url-parametre url-params
Last synced: 6 months ago · JSON representation ·

Repository

Tool to add parameters to a url before a redirect in Classic ASP.

Basic Info
  • Host: GitHub
  • Owner: R0mb0
  • License: mit
  • Language: Classic ASP
  • Default Branch: main
  • Homepage:
  • Size: 24.4 KB
Statistics
  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
asp-classic class classic-asp italian-developers library r0mb0 url url-parameters url-parametre url-params
Created 8 months ago · Last pushed 7 months ago
Metadata Files
Readme Contributing Funding License Code of conduct Citation Security Support

README.md

Setting url parameters Classic asp

Codacy Badge

Maintenance Open Source Love svg3 MIT

Donate

setting_parameters_to_url.class.asp's avaible functions

  • Add a url parameter to the list -> Public Function add_parameter(ByVal name, ByVal parameter)
  • Remove a parameter from the list by name -> Public function remove_parameter_by_name(ByVal name)
  • Remove a parameter from the list by the parameter value -> Public function remove_parameter_by_parameter(ByVal parameter)
  • Add the parameters to a url -> Public Function set_parameters_to_url(ByVal url)
  • Get actual page URL -> Public Function get_current_url()
  • Redirect a URL to new tab -> Public Function redirect(ByVal url)

How to use

From Test.asp

  1. Initialize the class asp <%@LANGUAGE="VBSCRIPT"%> <!--#include file="setting_parameters_to_url.class.asp"--> <% 'Initialize the class Dim my_parameters Set my_parameters = new setting_parameters_to_url

  2. Use the class ```asp myparameters.addparameter "PFM", "Impressionidisettembre" myparameters.addparameter "Banco", "RIP" myparameters.addparameter "Locandadellefate", "Forselelucciolenonsiamanopiù"

    Response.write "<br><br>" & my_parameters.set_parameters_to_url(my_parameters.get_current_url + "/example.asp")
    
    my_parameters.remove_parameter_by_name "Banco"
    
    Response.write "<br><br>" & my_parameters.set_parameters_to_url(my_parameters.get_current_url + "/example.asp")
    
    my_parameters.remove_parameter_by_parameter "Impressioni_di_settembre"
    
    Response.write "<br><br>" & my_parameters.set_parameters_to_url(my_parameters.get_current_url + "/example.asp")
    

    %> ```

Not made by AI

Owner

  • Name: Francesco Rombaldoni
  • Login: R0mb0
  • Kind: user
  • Location: Italy
  • Company: INRCA/SIA

If I'm living in a crisis without realizing it?

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Rombaldoni"
  given-names: "Francesco"
title: "Setting_url_parameters_classic_asp"
version: 1.0.0
date-released: 2025-06-24
url: "https://github.com/R0mb0/Setting_url_parameters_classic_asp"

GitHub Events

Total
  • Watch event: 1
  • Push event: 2
  • Create event: 2
Last Year
  • Watch event: 1
  • Push event: 2
  • Create event: 2