How-to build tagging system like SO ?
I'm using a unique textbox on my asp.net mvc website to submit "tags".
First of all, i tried to split tags with commas "asp.net, c#, sql server". It works but if user forgot to seperate tags with commas i've a problem to split that string.
"asp.net c# sql server" : sql server should be a single tag, not two "sql" + "server".
Moreover i "can't" (he should not take care about this ...) ask user to use "-" character to seperate words of the tag : "sql-server"
Someone help ?