|
I have a JavaScript request going to a ASP.Net (2.0) HTTP handler which passes the request to a java web service. In this system special characters, such as those with an accent do not get passed on correctly.
E.G.
Human input: Düsseldorf becomes a JavaScript...
Started by dlamblin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The client will be passing UTF-8 encoded....
In my scenario, I'm debugging an HTTP handler in Visual Studio and typing the address the code.
I am getting the same problem with an ASP.NET generic handler when the URL is typed directly URLs.
|
|
Python frameworks always provide ways to handle urls that convey the data of the request in an elegant way:
think
http://somewhere.overtherainbow.com/userid/123424/
I want your to notice the ending path /userid/123424/
How do you do this in ASP.NET?
Started by minty on
, 10 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Can read Rob Connerys post ASP.NET MVC: Using RESTful Architecture
http://blog.wekeroad.com ASP.NET MVC or if you're set on webforms, the new System.Web.Routing namespace in ASP.NET 3.5 SP1
This example uses ASP.NET Routing....
|