Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

Decode URL-Encoded Text

Description
Converts a URL-Encoded string to a human-readable URL.
Language
C#.net
Minimum Version
Created By
Janko Heilgeist
Contributors
-
Date Created
Aug 19, 2014
Date Last Modified
Aug 19, 2014

Macro Code

using System;

public static class ClipboardFusionHelper
  {
    public static string ProcessText(string text)
    {
      return System.Web.HttpUtility.UrlDecode(text);
    }
  }