Tagged Questions
-2
votes
2answers
65 views
How to decode('utf-8') [closed]
I've tried using the .decode('utf-8') function on a URL after I have opened the url up. Everytime I do it, it says the module doesn't exist. I have imported the urllib also. I want to do this so I can ...
0
votes
1answer
20 views
Decode cyrilic url
For example I have post name %d0%b0%d1%80%d1%85%d0%b8%d0%b2 it mus be АРХИВ , it's possible to decode to normal word this code ?
0
votes
1answer
336 views
how to decode a url in vb.net
This line says server is not declared.
Dim DecodedString As String = server.UrlDecode(context.Request.Form("DeckName"))
I have imports system.web at the top. cannot seem to figure out why its not ...
0
votes
3answers
285 views
PHP Code Igniter Encryption doesn't return anything
when i load my controller i have this:
$this->load->library('encrypt');
$get = null;
parse_str($_SERVER['QUERY_STRING'],$get);
$email = $this->encrypt->decode($get["acc"]); // e.g. ...
0
votes
2answers
557 views
0
votes
0answers
44 views
Decoding Norwegian Chars in PHP
i want to know about how to decode Norwegian characters in PHP, i have used rawurldecode() but it returns wrong, the string is as follow :
%C3%98yvind
It should be decoded as
Øyvind
But i ...
0
votes
2answers
494 views
URL encoding in java and decoding in javascript
I have an URL to encode on my java serveur and then to decode with javascript.
I try to retrieve a String I send in param with java. It is an error message from a form validation function.
I do it ...
2
votes
3answers
6k views
Decoding Base64 Images
I have recently found a file on the web, and I really need the original url to it, but it's encoded into Base64. It's an image.
The URL Starts with something like this: data:image/png;base64, and ...
1
vote
0answers
104 views
How do I create a query that will insert large amounts of text special characters in MySQL
INFO: I am using [ MySQL 5.5.16 ]-[ PHP 5.3.8 ]-[ jqSajax 1.0.2 ]-[ JQuery 1.2.2 ]
PHP, MySQL, Apache and HTML header are charset UTF-8
I have been working on this for three days.
One database:
...
2
votes
2answers
480 views
rewrite and url decoding
It seems a site is linking to mine in a bad way.
From google webmaster tools I see some 404 errors
domain.com/file.php?id=1 (404) Not found (Date)
This url works ok but because of browser page ...
0
votes
1answer
294 views
Decoding foreign language characters in url
I am decoding characters in a URL by using HTTPUtility.URLDecode. Here are the characters I have to decode:
%26 = "&"
%28 = "("
%29 = ")"
%20 = " "
%5B = "["
%5D = "]"
%2C = ","
%23 = "#"
%F3 = ...
3
votes
1answer
201 views
Not able to pass “+” to grails webservice URL
We are having an issue when we pass a parameter having "+" character in it, to a webservice (written in groovy), the character is being decoded to a space. Even if we pass "%2B", it is being decoded ...
3
votes
6answers
318 views
1
vote
0answers
156 views
facebook decoing my url?
I have created an application for facebook's fan pages. Among other things I save the page's Id. Since the page's Id alone is of no intrest, I cross it against facebook's graph api. For most pages ...
3
votes
2answers
1k views
How to correctly decode Google Translate API answers?
I'm communicating with the Google Translate API. I can send my request and get an answer. The only problem is that some special characters are encoded. For exemple :
"The clock" (EN) will be ...
1
vote
2answers
2k views
Javascript replace query string + with a space
I'm grabbing the query string parameters and trying to do this:
var hello = unescape(helloQueryString);
and it returns:
this+is+the+string
instead of:
this is the string
Works great if ...
9
votes
4answers
7k views
ASP.NET MVC URL decode
I have an action like this:
<%=Html.ActionLink("My_link", "About", "Home", new RouteValueDictionary {
{ "id", "Österreich" } }, null)%>
This produces the following link: ...
0
votes
3answers
5k views
How to encode URL in JavaScript and PHP?
I want to send a URL in a POST request in a variable called surl. How should I encode it in JavaScript and decode it in PHP? For example, the value of surl could be ...
0
votes
3answers
692 views
What does this javascript code mean and how to i decode it using php
this code has a URL in it, how do i use php to decode the url out of it:
<script type = 'text/javascript' > eval(function(p, a, c, k, e, d) {
while(c--)if(k[c])p = p.replace(new ...
1
vote
1answer
1k views
browser url encoding different that java's URLEncoder.encode
I have a url like this:
product//excerpts?feature=picture+modes
when i access this url from browser, the backend receives the request as:
"product//excerpts?feature=picture+modes"
At the web server ...
0
votes
1answer
1k views
Request Object not decoding UrlEncoded
C#, ASP.NET 3.5
I create a simple URL with an encoded querystring:
string url = "http://localhost/test.aspx?a=" +
Microsoft.JScript.GlobalObject.escape("áíóú");
which becomes nicely: ...
44
votes
4answers
25k views
Code for decoding/encoding a modified base64 URL
I want to base64 encode data to put it in a URL and then decode it within my HttpHandler.
I have found that Base64 Encoding allows for a '/' character which will mess up my UriTemplate matching. ...
1
vote
5answers
4k views
Java Reading Undecoded URL from Servlet
Let's presume that I have string like '=&?/;#+%' to be a part of my URL, let's say like this:
example.com/servletPath/someOtherPath/myString/something.html?a=b&c=d#asdf
where myString is ...