|
|
|
Click here to copy the following block |
Function GetUrlParameters(ByVal url As String) As Hashtable Dim ht As New Hashtable() Dim qsStart As Integer = url.IndexOf("?") If qsStart > -1 Then url = url.Substring(qsStart + 1) Dim params() As String = url.Split(New Char() {"&"c}) Dim param As String 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 ht End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|