如何在列表视图中操作字符串/数据项?
这就是我在 listview 中显示字符串的方式:
<%# Eval("Description")%>
这是获取 listview 数据的方法中的代码:
lstBlog.DataSource = blg;
lstBlog.DataBind();
我如何操作“Description”字符串...即仅获取前 50 个字符/剥离任何 html 标签字符串......
提前感谢
This is how i am showing the string in listview:
<%# Eval("Description")%>
This is the code in a method to get the data for listview :
lstBlog.DataSource = blg;
lstBlog.DataBind();
How can i manipulate the "Description" string ... i.e. get only first 50 characters/stripping off any html tags from the string .......
Thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
aspx页面中
在cs中的
in aspx page
in cs
在aspx页面中,您可以直接获取字符串部分,如下所示:
“OR”
在aspx页面中为ListView创建ItemDataBound事件
在后面的代码中,创建ItemDataBound
要剥离HTML标签,请参见此处:http://www.dotnetperls.com/remove-html-tags
In aspx page, you can directly take string part as below:
"OR"
In aspx page and create ItemDataBound event for the ListView
In code behind, create ItemDataBound
To strip HTML tags please see here: http://www.dotnetperls.com/remove-html-tags