GetUrlParameters – Retrieving the key-value pairs from the specified url

GetUrlParameters – Retrieving the key-value pairs from the specified url

' Returns a hashtable with the key-value pairs extracted from the querystring ' of the specified url' EXAMPLE:'   Dim ht As Hashtable = GetUrlParameters' ("http://www.mysite.com?param1=123¶m2=¶m3=234")'   ' print the key=value pairs to the console window'   Dim myEnumerator As IDictionaryEnumerator = ht.GetEnumerator()'   While myEnumerator.MoveNext()'      Console.WriteLine("{0}: {1}", myEnumerator.Key, myEnumerator.Value)'   End While'   ' print the value of a specified param, named param3'   Console.WriteLine("Param3: " & ht("param3"))Function GetUrlParameters(ByVal url As String) As Hashtable    Dim ht As New Hashtable()    ' consider only the querystring, that's the part after the ? char    Dim qsStart As Integer = url.IndexOf("?")    If qsStart > -1 Then url = url.Substring(qsStart + 1)    ' split the querystring with the & char    Dim params() As String = url.Split(New Char() {"&"c})    Dim param As String    ' for each param extract the param name (the part before the =) and the     ' value    For Each param In params        Dim i As Integer = param.IndexOf("="c)        If i > -1 Then            ht.Add(param.Substring(0, i), param.Substring(i + 1))        End If    Next    Return htEnd Function

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes