静态文本与数据绑定值的串联
任何人都可以帮助我如何将静态文本与数据绑定值连接起来,例如:
<asp:Label ID="lblSurveyUrl" runat="server" text='<%#DataBinder.Eval(Container.DataItem, "SurveyID")%>'></asp:Label>
现在该标签的文本变为 1,2 或 3(无论我们从表中获取什么 SurveyID),但我希望它变为。
somepage.aspx?id=1
其中“somepage.aspx?id=”是固定文本,1 是我们从表达式中获得的值。我怎样才能做到这一点?
谢谢。
Anyone can help me with how to concatenate static text with databinding value like for example:
<asp:Label ID="lblSurveyUrl" runat="server" text='<%#DataBinder.Eval(Container.DataItem, "SurveyID")%>'></asp:Label>
now the text of this label becomes 1,2 or 3 (whatever SurveyID we're getting from table) but I would like it to become.
somepage.aspx?id=1
where "somepage.aspx?id=" is the fixed text and 1 is value that we got from expression. How can I achieve this ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以格式字符串给出静态文本:
Try giving the static text in a format string: