English 中文(简体)
Losing characters in web based string parsing using query strings
原标题:

I am trying to request a webpage from an iis web server that I control utilising query strings.

E.g., I have a webbrowser control in my winforms app and request a page similar to "www.site.com/getpage.ashx?field=afsfgwesar+sere"

When i try to run this it fails because on the server side, getpage.ashx can’t locate the right field.

After much hair pulling I have figured out that the string has actually changed from what was sent to the browser and what was received - i.e. - the plus symbol is missing when the server starts working with it.

It begins as "afsfgwesar+sere" and ends as "afsfgwesarsere". So somewhere along the line the string is being reformatted?

This is how I am getting the string on the server side -

string field = (string)context.Request.QueryString["field"];

It is at this point I have stepped in and seen the missing plus symbol.

Does anyone know why I am losing the plus symbol and how I can get it back?

最佳回答

The plus sign is a reserved character in querystrings. It is often interpreted as a space character. Just have a look at a search engine and you ll notice this.

You can prevent this by encoding the afsfgwesar+sere text before adding it to the querystring. Use HttpUtility.UrlEncode to do so. Use HttpUtility.UrlDecode to read it back.

For more info, read: http://msdn.microsoft.com/en-us/library/4fkewx0t.aspx

问题回答

The + symbol is replaced with a space character because spaces are not allowed characters.

You can insert %2B to "get" the plus symbol after the URL is decoded.

www.site.com/getpage.ashx?field=afsfgwesar%2Bsere

The HttpUtility class has methods to URL encode and decode strings. To see what it basically does, there is also an online encoder/decoder which you can use.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签