I’d like to have iOS to open URLs from my domain (e.g. http://martijnthe.nl) with my app whenever the app is installed on the phone, and with Mobile Safari in...
I have this URL: site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc what I need is to be able to change the ‘rows’ url param value to something i specify, lets say 10. And if the...
I need to implement the following WebAPI method: /api/books?author=XXX&title=XXX&isbn=XXX&somethingelse=XXX&date=XXX All of the query string parameters can be null. That is, the caller can specify from 0 to all of...
I am aware that a + in the query string of a URL represents a space. Is this also the case outside of the query string region? That is...
Example: www.site.com/index.php#hello Using jQuery, I want to put the value hello in a variable: var type = … 8 Answers 8
I am receiving the rather self explanatory error: A potentially dangerous Request.Path value was detected from the client (*). The issue is due to * in the request URL:...
Dave Ward says, It’s not exactly light reading, but section 4.2 of RFC 3986 provides for fully qualified URLs that omit protocol (the HTTP or HTTPS) altogether. When a...
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 11 years ago....
I am trying to send a GET message that contains strings with ampersands and can’t figure how to escape the ampersand in the URL. Example: http://www.example.com?candy_name=M&M result => candy_name...
If for example you follow the link: data:application/octet-stream;base64,SGVsbG8= The browser will prompt you to download a file consisting of the data held as base64 in the hyperlink itself. Is...