0
votes
4answers
70 views
how to use urlencode in php
Hello,
I'm trying to use urlencode to convert the string: <a href="<?php print 'search.php?query='.quote_replace(addmarks($search_results['did_you_mean'])).'&search=1'? …
1
vote
1answer
35 views
Request.Querystring removes characters from encrypted text
In my application I take a user's e-mail address, encrypt it, and URLEncode it, and pass it along into a QueryString.
email = Server.UrlEncode(aes.Encrypt(email));
The landing p …
0
votes
2answers
37 views
Including a function inside single quotes
I am trying to figure out why I can't include a function into this. I am trying to make it so $client will make it's way into the request string. http://test.com/next.xml?file=$cli …
0
votes
2answers
34 views
Firefox Unable to Handle %2b in Page Links
I noticed an issue where with the following HTML:
<html>
<head>
<title>UrlEncode Test</title>
</head>
<body>
<a …
1
vote
3answers
84 views
querystring encoding of a javascript object
Do you know a fast and simple way to encode a javascript object into a string that I can pass via GET?
No jQuery, no other frameworks, just plain Javascript :)
0
votes
2answers
37 views
preg_replace with function
I have some HTML that is being run through PHP:
<a href="?char=">&</a>
and I'm wanting to use a preg_replace to replace the first & with a urlencoded value of …
2
votes
5answers
2k views
URLEncode from a bash script
I am trying to write a bash script for testing that takes a parameter and sends it through curl to web site. I need to url encode the value to make sure that special characters ar …
2
votes
1answer
89 views
How to percent-encode url parameters in python?
If I do
url = "http://example.com?p=" + urllib.quote(query)
It doens't encode "/" to "%2F" (breaks OAuth normalization)
It doens't handle unicode (it throw an exception)
is …
0
votes
1answer
8 views
URLencode dates inside of a javascript function
Hi, i need to URLEncode a date value that is taken from a datepicker control on my page. Currently I am trying to use the escape function to do this, but it is not working.
exampl …
0
votes
2answers
43 views
i need to build my url in a javascript function then return the string back to href
Hi, I need to call a Javascript function from an a element.. something like this:
href='javascript:myjavascriptfunction();'. I need the Javascript function to get the values from …
1
vote
2answers
104 views
Properly url encode space character
I use HttpUtility.UrlEncode to encode any value that is used in a route.
I already solved an issue with encoding forward slashes. The new problem I have now is with spaces. A spac …
0
votes
6answers
2k views
UrlEncode - Javascript vs. C#
I have a URL which requires some parameters. The values of those parameters can be accented characters, so I absolutely need to UrlEncode them. Strangely, I see a difference betwee …
0
votes
2answers
82 views
Convert & to & in Python
Hi!
I'm working on a simple crawler in Python. The aim is to create a sitemap.xml.
(you can find the very alpha version here: http://code.google.com/p/sitemappy/)
I noticed that if …
0
votes
3answers
101 views
How to get a querystring when it is URLEncoded or has percent characters in ASP.NET
How to get the actual querystring from the Request object when the querystring is UrlEncoded or has percent characters in ASP.NET?
Basicly, if I have a Url like this: Default.a …
2
votes
2answers
135 views
URL encoding the space character: + or %20?
When is a space in a URL encoded to + and when is it encoded to %20?
