Click or drag to resize
UrlUtilsGetUrlWithParam Method (String, String, String)
Adds, replaces or deletes a parameter of a URL.

Namespace: PDTec.IceNet.Web.Utils
Assembly: PDTec.IceNet.Web (in PDTec.IceNet.Web.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntax
C#
public static string GetUrlWithParam(
	string url,
	string name,
	string value
)

Parameters

url
Type: SystemString
The original URL.
name
Type: SystemString
The parameter name.
value
Type: SystemString
The parameter value. Set value to null to delete the url parameter specified by name.

Return Value

Type: String
The modified URL.
See Also