how to allow special word passing in url?
i have a appliction wh开发者_如何学Pythonere user pass any type of words depend of what they want and website listed them using the word not using ID.
like they pass Blah /Blah then they not work in my application. how i can do something that it's work
like
website.com/user/word/blahblahblah > it's worked website.com/user/word/Blah /Blah > it's not worked
how i can make second work ?
Use Server.URLEncode
or %2F
to represent that character.
精彩评论