Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
+ 記号は、テキストボックスからデータベースに保存するときに %2b としてエンコードされます。+のみで保存したいです。では、それを達成する方法は?助けてくれてありがとう。
あなたの価値はURLエンコードされています。デコードするには、次のことを試してください。
var decoded = HttpUtility.UrlDecode(input);
使用できます
Server.HtmlDecode(Textbox.Text)
保存する。
使用する:
string value = Server.HtmlDecode(TextBox1.Text);