url_crypted_parameters_classic_asp
A class for passing and retrieving parameters from URL
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.9%) to scientific vocabulary
Keywords
Repository
A class for passing and retrieving parameters from URL
Basic Info
Statistics
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 1
Topics
Metadata Files
README.md
Url crypted parameters in Classic asp
⚠️ Dependencies ⚠️
This class needs: rijndael.asp and dictionary.class.asp to work correctly, the two files must be in the same dir of the class.
url_crypted_parameters.class.asp's avaible functions
- Set the password to use for crypting ->
Public Function set_password(ByVal password) - Get the setted password ->
Public Function get_password() - Check if password is setted ->
Public Function is_password_setted() - Add parameter to crypt ->
Public Function add_paramater(ByVal id, ByVal value) - Change parameter value from id ->
Public Function change_parameter(ByVal id, ByVal value) - Remove parameters ->
Public Function remove_paramater_by_id(ByVal id) - Get parameter value from id ->
Public Function get_parameter_value(ByVal id) - Write all parameters inserted ->
Public Function write_parameters() - Get actual page URL ->
Public Function get_current_url() - Add crypted parameters in URl ->
Public Function set_parameters_to_url(ByVal url) - Redirect a URL to new tab ->
Public Function redirect(ByVal url) - Decrypt actual URL parameters ->
Public Function decrypt_actual_params() - Decrypt URL parameters ->
Public Function decrypt_url_params(ByVal url)
How to use
Page where crypt params
From
Test.asp
Initialize the class ```asp <%@LANGUAGE="VBSCRIPT"%> <!--#include file="urlcryptedparameters.class.asp"--> <% Dim url Set url = new url_crypted
url.set_password("Banana") ```
Add params to crypt in URL
asp url.add_paramater "id", 1328 url.add_paramater "password","blablabla"Generate URL with crypted params
asp Dim link link = url.set_parameters_to_url("test2.asp") %>
Page where decrypt params
From
Test2.asp
Initialize the class ```asp <%@LANGUAGE="VBSCRIPT"%> <!--#include file="urlcryptedparameters.class.asp"--> <% Dim url Set url = new url_crypted
url.set_password("Banana") ```
Decrypt page params
asp url.decrypt_actual_params()Access information
asp Response.Write("Id value: " & url.get_parameter_value("id") & "<br>") <%
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: "Url_crypted_parameters_classic_asp" version: 1.0.0 date-released: 2024-12-05 url: "https://github.com/R0mb0/Url_crypted_parameters_classic_asp"
GitHub Events
Total
- Release event: 1
- Watch event: 1
- Push event: 19
- Create event: 3
Last Year
- Release event: 1
- Watch event: 1
- Push event: 19
- Create event: 3
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0