尝试仅在字符串不为空时打印,并且正在使用下面的代码,但它不断出现该错误......
<%if(!String.IsNullOrEmpty(o_handler.renderDesc())) { %>
<strong>Description:</strong><BR>
<HR SIZE="1">
<strong><%= o_handler.renderDesc()%></strong>
<HR SIZE="1">
<BR>
<%} else { %>
<%}%>
还试过这个:
<%if( o_handler.renderDesc() != null ) { %>
<strong>Description:</strong><BR>
<HR SIZE="1">
<strong><%= o_handler.renderDesc()%></strong>
<HR SIZE="1">
<BR>
<%} else { %>
<%}%>
这是错误:
编译器错误消息:VJS1223:在“字符串”中找不到方法'IsNullOrEmpty(String)'
答案 0 :(得分:1)
看起来您的页面语言设置为JScript。尝试将其设置为C#。