本文介绍了从db到textbox的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 嘿所有, 当我从数据库中的字段中提取空值并尝试将其放入 文本框时我得到了以下错误: 从类型''DBNull''转换为''字符串''无效。 这通常如何处理? 谢谢, rodchar hey all, when i pull a null value from a field in a database and try to put it in atext box i get the following error:Cast from type ''DBNull'' to type ''String'' is not valid. How is this normally handled? thanks,rodchar推荐答案 ''DBNull.Value.ToString''将返回一个空字符串。 \\\ Me.TextBox1.Text = bla.ToString() /// - MS Herfried K. Wagner MVP< URL:http://dotnet.mvps.org/> VB< URL:http://classicvb.org/petition/> ''DBNull.Value.ToString'' will return an empty string. \\\Me.TextBox1.Text = bla.ToString()/// --M S Herfried K. WagnerM V P <URL:http://dotnet.mvps.org/>V B <URL:http://classicvb.org/petition/> 这篇关于从db到textbox的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-26 20:41