Clickable URL in a Winform Message Box?

One option is display the url in the message box, along with a message and provide the help button that takes you to that url: MessageBox.Show( “test message”, “caption”, MessageBoxButtons.YesNo, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, 0, ‘0 is default otherwise use MessageBoxOptions Enum “http://google.com”, “keyword”) Important to note this code cannot be in the load event of the … Read more

PHP: How to resolve a relative url

Perhaps this article could help? http:// nashruddin.com/PHP_Script_for_Converting_Relative_to_Absolute_URL Edit: reproduced code below for convenience <?php function rel2abs($rel, $base) { /* return if already absolute URL */ if (parse_url($rel, PHP_URL_SCHEME) != ” || substr($rel, 0, 2) == ‘//’) return $rel; /* queries and anchors */ if ($rel[0]==’#’ || $rel[0]==’?’) return $base.$rel; /* parse base URL and convert … Read more

How to do dynamic URL redirects in Struts 2?

Here’s how we do it: In Struts.xml, have a dynamic result such as: <result name=”redirect” type=”redirect”>${url}</result> In the action: private String url; public String getUrl() { return url; } public String execute() { [other stuff to setup your date] url = “/section/document” + date; return “redirect”; } You can actually use this same technology to … Read more

How to fetch URL of current Tab in my chrome extension using javascript

Note you must have the tabs permission set in your manifest file “permissions”: [ “tabs” ], http://developer.chrome.com/extensions/tabs.html or the activeTab permission if initiated by a click on the extension button[Xan] https://developer.chrome.com/extensions/activeTab Code: chrome.tabs.query({currentWindow: true, active: true}, function(tabs){ console.log(tabs[0].url); });