Foxtable(狐表)用户栏目专家坐堂 → Public member 'Replace' on type 'Long' not found 字符串替代操作报错 啥原因啊


  共有3205人关注过本帖树形打印复制链接

主题:Public member 'Replace' on type 'Long' not found 字符串替代操作报错 啥原因啊

帅哥哟,离线,有人找我吗?
guosheng
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:四尾狐 帖子:896 积分:7535 威望:0 精华:0 注册:2017/12/27 14:19:00
Public member 'Replace' on type 'Long' not found 字符串替代操作报错 啥原因啊  发帖心情 Post By:2020/4/29 15:37:00 [只看该作者]


Dim nms As String = e.Form.Controls("TextBox6").value
messagebox.show(nms)    

Dim nms1 As String = e.Form.Controls("TextBox6").value.Replace(",","-")   '报错
messagebox.show(nms1 )   
Public member 'Replace' on type 'Long' not found


Dim nms1 As String = nms.Replace(",","-")    '没问题
messagebox.show(nms1 )    

 回到顶部
帅哥哟,离线,有人找我吗?
有点蓝
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110574 积分:562760 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2020/4/29 15:43:00 [只看该作者]

e.Form.Controls("TextBox6").text.Replace(",","-")

如果是绑定的,value跟随绑定的列的类型,如果绑定的列是整数型,value也是整数型,整数是没有Replace用法的

 回到顶部