|
|
|
Click here to copy the following block | ' This function takes in input a base url and an array of parameter names and ' values (in the form: param1, value1, param2, value2, etc.), ' and returns the final url with all the parameters in the querystring ' Example: ' Dim url As String = BuildUrlWithQueryString("Test.aspx", "Param1", "Value1", ' "Param2", 123, "Param3", "hello <world>")
Function BuildUrlWithQueryString(ByVal baseUrl As String, _ ByVal ParamArray args() As String) Dim params As String = "" Dim i As Integer For i = 0 To args.Length - 1 Step 2 ' if this is not the first parameter, concatenate with & If params.Length > 0 Then params &= "&" ' add the param_name=param_value piece to the current params string params &= HttpUtility.HtmlEncode(args(i)) & "=" & _ HttpUtility.HtmlEncode(args(i + 1)) Next ' add the params to the base url and return the final string Return baseUrl & "?" & params 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 ) |
|
|