Skip to content

Instantly share code, notes, and snippets.

@ronnieoverby
Created May 11, 2012 17:57
Show Gist options
  • Save ronnieoverby/2661362 to your computer and use it in GitHub Desktop.
Save ronnieoverby/2661362 to your computer and use it in GitHub Desktop.
public bool IsCurrent
{
get
{
string requestUrl = HttpContext.Current.Request.Url.AbsolutePath;
return Url != null && Url.Equals(requestUrl, StringComparison.OrdinalIgnoreCase);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment