Questions tagged [url-encoding]

URL Encoding is a mechanism for encoding information in a Uniform Resource Identifier (URI) under certain circumstances.

URL Encoding, also known as Percent-encoding, is a mechanism for encoding information in a Uniform Resource Identifier (URI) under certain circumstances. Although it is known as URL encoding it is, in fact, used more generally within the main Uniform Resource Identifier (URI) set, which includes both Uniform Resource Locator (URL) and Uniform Resource Name (URN).

As such, it is also used in the preparation of data of the application/x-www-form-urlencoded media type, as is often used in the submission of HTML form data in HTTP requests.

1000 questions
0
votes
1 answer

Http post SQL Server 2000 stored procedure

We are having trouble sending a http post via a stored procedure on SQL Server 2000. SQL is the only method we have to send the http post. We are apparently not sending a [fin , ack] and the connection is not shutting down quick enough. can anyone…
0
votes
2 answers

Pass "dot slash" sequence in a URL querstrying

In the ASP.net web application that I am working on, there is a link like below INFCE/DEP./WG--8/48 When I click on the link, it gives a File not found (404) error. I did a bit of…
itsbalur
  • 992
  • 3
  • 17
  • 39
0
votes
1 answer

How to stop XSL unescaping URLs

I am using XSL to display an XML representation of an email message in browsers. Email attachments are stored in separate files to the main email XML file, and so I want the resulting web page for the email to contain a link to its…
jwaddell
  • 1,892
  • 1
  • 23
  • 32
-1
votes
1 answer

How to change url encode function for asp to asp.net

How to change this urlencode function in asp to asp.net Function URLEncode Dim StrTemp, StrChar Dim IntPos, IntKey StrTemp = "" StrChar = "" For IntPos = 1 To Len(encodeString) IntKey =…
zanhtet
  • 2,040
  • 7
  • 33
  • 58
-1
votes
1 answer

How to use url encoding function between asp.net and asp

I want to write the two functions that is used for asp.net and asp. I want to write two version. This function is used url encode and decode. Now, I got a new problem. This is how to work server.urlencode. So, how to implement this url encode…
zanhtet
  • 2,040
  • 7
  • 33
  • 58
-1
votes
1 answer

used sharing URL Encoding function in asp and asp.net

I want to use url decode and encode in asp and asp.net. I already have to use an application that is session bridge in asp.net and asp. Now, I want to use url encoding function shared. How could I do that?
zanhtet
  • 2,040
  • 7
  • 33
  • 58
-1
votes
1 answer

firebase downloading an image url encode error

I'm storing some images in firebase, firebase gives me an url to download the image like this…
-1
votes
2 answers

Store Image name in text view

This is my code for storing image in ImageView but i want to store image name in My TextView Object Please help how to do this. @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { …
-1
votes
1 answer

How to convert special character string to url?

I have one url string which shows static map with route let stringUrl =…
Jigar Thakkar
  • 6,834
  • 2
  • 17
  • 15
-1
votes
2 answers

Should I use URLEncoder for each URL parametr

For each request to server in my android app I need to encode parameters, so my string for URL is looks like "http://example.com/script.php?param1="+URLEncoder.encode(param1.getText().toString(),…
moonvader
  • 19,761
  • 18
  • 67
  • 116
-1
votes
1 answer

HttpUtility.HtmlEncode after postback asp.net

I have this in the url: http://localhost:5466/Supplier.aspx?id=Orchidée organisation After a postback on the page the url changes to: http://localhost:5466/Supplier.aspx?id=Orchid%C3%A9e%20organisation How can i maintain the first url after…
Jmocke
  • 269
  • 1
  • 10
  • 20
-1
votes
1 answer

how should i remove + from my string url (Swift)

Question :: how to remove + from my string url Problem :: while calling api i am getting + symbol at the end of url so how can i remove that + here is my code which removing space extension String { func encodeURL() -> String { return…
Govind Rakholiya
  • 295
  • 1
  • 3
  • 20
-1
votes
3 answers

string modifications are not working?

This is my code and in my url string white spaces are not encoded by the code NSString *str = item.fileArtPath; NSCharacterSet *set = [NSCharacterSet URLQueryAllowedCharacterSet]; [str stringByAddingPercentEncodingWithAllowedCharacters:set]; [str…
SUDHAKAR RAYAPUDI
  • 549
  • 1
  • 9
  • 18
-1
votes
1 answer

Websphere query string encoding issue

Have an URL with non-latin symbols in query params:http://localhost:9080/proxy-octopus/oct2c/!adm_v2_Common.DialogForm?func=FiltrProc&title=Поиск процедур по набору атрибутов Changed url encoding for WAS to Windows-1251: client.encoding.override set…
Gregory
  • 413
  • 5
  • 16
-1
votes
2 answers

Urlencoding and toLowerCase - effect on output

I came through this code (java), and was wondering if below two will have any actual difference in output: String output1 = (URLEncoder.encode(plainString, "UTF-8")).toLowerCase(); String output2 = URLEncoder.encode(plainString.toLowerCase(),…
Sanjay Verma
  • 1,390
  • 22
  • 40