惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
Intezer
C
Cyber Attacks, Cyber Crime and Cyber Security
The Register - Security
The Register - Security
量子位
Security Latest
Security Latest
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
C
CXSECURITY Database RSS Feed - CXSecurity.com
MyScale Blog
MyScale Blog
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Spread Privacy
Spread Privacy
Jina AI
Jina AI
博客园 - 【当耐特】
P
Palo Alto Networks Blog
Last Week in AI
Last Week in AI
SecWiki News
SecWiki News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
G
GRAHAM CLULEY
宝玉的分享
宝玉的分享
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
The Blog of Author Tim Ferriss
V
Vulnerabilities – Threatpost
有赞技术团队
有赞技术团队
T
Tor Project blog
H
Hacker News: Front Page
A
Arctic Wolf
NISL@THU
NISL@THU
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
V
V2EX
N
News and Events Feed by Topic
Webroot Blog
Webroot Blog
Know Your Adversary
Know Your Adversary
P
Privacy International News Feed
I
InfoQ
D
Docker
L
LINUX DO - 最新话题
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
U
Unit 42

博客园 - Bryant

SQL 2005 Reporting Service "提供程序加载失败" Provider Load fail的解决 Help:立体图绘制以及根据X,Y,Z三坐标值,在图上描点 winform 统计图控件 解决 VS2005 SP1 时“无法使用此产品的安装源,请确认安装源存在,并且您可以访问它”的错误 控件开发的资料 疑问:公路移动应用开发;数据挖掘开发,哪个更好? 2008年的第一场雪,丰收之雪 Visual Studio 2005 SP1安装 关键点 终极解决:Cab安装包的时候,制作中文快捷方式,用中文编译会报错,用英文做为快捷方式名 编译器错误信息: CS0016: 未能写入输出文件 中秋节快乐 创建.net web项目出错HTTP/1.1 500 Internal Server Error 获得字符串长度(中文字符占2) - Bryant - 博客园 sql Server 索引优化 (转) Infragistics的部署问题 WebService 数据压缩 Happy New Year 控件开发中常用的元数据 结果怎么会是这样?
FreeTextBox控件 保存空格 显示确是?
Bryant · 2007-01-30 · via 博客园 - Bryant

string str=FreeTextBox1.Text

这样写的,如果Text中有空格
那保存后,显示就是 ?
这是为啥了?

后来把数据库中的这个空格copy出来,转化成ASCII码是:160

原来,utf-8格式只对127以内的ASCII码是直接处理,所以需要进行处理下:

Str.Replace(System.Web.HttpUtility.HtmlDecode(" "), " ");

这样的话就没有问题了!

希望给遇到这个问题的同胞们一点帮助!