类型不匹配:“Server.HTMLEncode” ASP
我需要对记录的内容进行编码,并且我正在使用以下代码:
If(rsScadenze("testo") <> "") Then
myString = rsScadenze("testo") 'this is a result of a query
myEncodeString=Server.HTMLEncode(myString) 'here there is my error
有人可以帮助我吗?
谢谢
I need to encode the content of a record and i'm using this code:
If(rsScadenze("testo") <> "") Then
myString = rsScadenze("testo") 'this is a result of a query
myEncodeString=Server.HTMLEncode(myString) 'here there is my error
Can someone help me?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的记录中的结果是NULL吗?
尝试 Server.HTMLEncode(rsScadenze("testo") & "")
Is the result in your record NULL?
Try Server.HTMLEncode(rsScadenze("testo") & "")
更改
将If(rsScadenze("testo") <> "") then
为
If("" & rsScadenze("testo") <> "") 那
为什么呢?
如果 rsScadenze("testo") 返回为 null,则向其添加“”,使其成为“”,
这是处理潜在 null 的更简单方法。
change
If(rsScadenze("testo") <> "") Then
to
If("" & rsScadenze("testo") <> "") Then
why?
in case rsScadenze("testo") comes back as null, adding the "" to it, makes it a ""
it's an easier way to deal with potantial nulls.