如何在 GridView Eval 中拆分逗号分隔的 DataItem 字段?
这是我的代码 -
<asp:TemplateField HeaderText="HIGH RISK (10-12)" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label ID="lblHighrisk" runat="server" Text='<%# Eval("URANGE").ToString().Split('-')[0] %>' />
</ItemTemplate>
</asp:TemplateField>
但这给出了编译时错误“服务器标记格式不正确”
here my code-
<asp:TemplateField HeaderText="HIGH RISK (10-12)" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label ID="lblHighrisk" runat="server" Text='<%# Eval("URANGE").ToString().Split('-')[0] %>' />
</ItemTemplate>
</asp:TemplateField>
but that is giving compile time error 'Server tag is not well formed'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
也许您对第二个分割中的引号有问题?
尝试一下
有帮助吗?
评论后更新
是的,这是有道理的,
在这种情况下尝试颠倒引用
是否有帮助?
Perhaps you have a problem with the quotation marks in the second split?
try
does that help?
Update after comment
Yes, that makes sense
Try reversing the quotation in that case
does that help?
尝试不加引号:
Try it without quotes:
当你转换字符串“.”时就可以了。 char 并将其发布到 split 方法。
It will be ok when you convert string "." to char and post it to split method.
这会起作用
This will work