在 Excel 中转义括号
我有一个 ASP.Net 网站,允许您将 Gridview 导出到 Excel。 Gridview 有一些列标题,其中包含单词,然后是用括号括起来的数字,如下所示:
Abc<br>(43)
Xyz<br>(55)
我已将绑定字段的 HtmlEncode 属性设置为 False,因为我不希望它转义其中的换行符标记。这很好,如果需要的话,我什至可以使用 &#40;
和 )
来转义括号。
我遇到的问题是 Excel 将 (43) 视为负数并将其显示为 -43。我怎样才能逃脱括号?
I have an ASP.Net website that allows you to export a Gridview to Excel. The Gridview has some column headings with words and then numbers surrounded by parentheses like this:
Abc<br>(43)
Xyz<br>(55)
I have set the bound field's HtmlEncode property to False because I do not want it to escape the line break tags I have in there. This is fine and I can even use (
and )
to escape the parentheses if I need to.
The issue I'm having is that Excel looks at the (43) as a negative number and displays it as -43. How can I escape the parentheses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“RenderControl”行后添加以下
2 行
。它将解决该问题。Add the following
2 Lines
after "RenderControl" Line. It will resolve the issue.