url

  • Android Launch Browser from App to handle external URLs

    Upon googling for this one, I found some good relevant links on stack overflow as well as the android webview documentation, but no singular solution that tied everything together. First, I created a custom WebViewClient class. Note that this is… Continue reading

  • URL Rewriting/Mapping using Global.asax

    Ultimately I wound up using a different method, specified in my other blog post on URL Rewriting on GoDaddy and Shared hosting. However, the method below is actually very useful if you are trying to do certain validation which cannot… Continue reading

  • URL Rewriting on GoDaddy and Shared hosting

    After doing a lot of searching through google queries, forums and archives, I was finally able to solve the conundrum of using URL rewriting on GoDaddy. The site in question is also a subdomain in a sub folder off the… Continue reading

  • URL Decode in WPF

    Crossing from web to forms development you may notice System.Web is not available. You could extract it from the GAC, but would suffer from having to manually update it moving forward. One solution on the web suggested using Microsoft.XSS library… Continue reading

  • URL Encode in .Net

    C#: (ASP .Net) C#: (Client/Server Environment) References MSDN, WebUtility Classhttp://msdn.microsoft.com/en-us/library/system.net.webutility.aspx MSDN, Uri Classhttp://msdn.microsoft.com/en-us/library/system.uri.escapeuristring.aspx MSDN blogs, http://blogs.msdn.com/b/yangxind/archive/2006/11/09/don-t-use-net-system-uri-unescapedatastring-in-url-decoding.aspx Continue reading

  • Get Current URL in Javascript

    JS (JQuery): JS (standard): Continue reading