setting_url_parameters_classic_asp
Tool to add parameters to a url before a redirect in 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
Repository
Tool to add parameters to a url before a redirect in Classic ASP.
Basic Info
Statistics
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
Setting url parameters Classic asp
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
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_urlUse 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")%> ```
Owner
- Name: Francesco Rombaldoni
- Login: R0mb0
- Kind: user
- Location: Italy
- Company: INRCA/SIA
- Repositories: 20
- Profile: https://github.com/R0mb0
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