Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的标记:<%#DataBinder.Eval(Container.DataItem, "summary")%>
运行它以查看在 Web 表单上检索到的摘要中的数据。当您收到包含数据的电子邮件时,它会显示所有内容,但如果您在网页上查看提交的表单,它会切断它。
知道如何让它显示完整信息。谢谢你。
附言。它在一个 ascx 文件中。
那是因为您可能在输入中的值周围缺少引号。你需要这样的形式:
<input type="hidden" name="summary" value="<%#DataBinder.Eval(Container.DataItem, "summary")%>" />
如果没有引号,则该值确实会在第一个空格处被削减。