Tagged Questions

8
votes
11answers
4k views

URL Routing: Handling Spaces and Illegal Characters When Creating Friendly URLs

I've seen a lot of discussion on URL Routing, and LOTS of great suggestions... but in the real world, one thing I haven't seen discussed are: Creating Friendly URLs with Spaces and illegal ...
0
votes
1answer
82 views

Getting Illegal characters in path exception after enabling HttpUnhandledException

I added to my .net app in the Global.asax.cs file error trapping like so void Application_Error(object sender, EventArgs e) { HttpUnhandledException httpUnhandledException = new ...
0
votes
1answer
104 views

Flex TextArea Strings and prohibited characters i.e. <meta charset=“utf-8”>

I'm trying to set the text of a TextArea with some text containing forbidden characters. I'm trying to set the text as <meta charset="utf-8"> and there is of course a problem with the "'s. I ...
0
votes
3answers
997 views

jQuery keyup() illegal characters

I have a field and want to prevent some illegal characters while showing the user as he types. How can I do this in follow example? $('input').bind("change keyup", function() { var val = ...