如何在列表视图中操作字符串/数据项?

发布于 2024-12-17 14:59:00 字数 284 浏览 0 评论 0原文

这就是我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拥抱影子 2024-12-24 14:59:00

aspx页面中

<%# CutString(Eval("Description").ToString(),50) %>

在cs中的

public string CutString(string value , int len)
{
       // ....
}

in aspx page

<%# CutString(Eval("Description").ToString(),50) %>

in cs

public string CutString(string value , int len)
{
       // ....
}
深府石板幽径 2024-12-24 14:59:00

在aspx页面中,您可以直接获取字符串部分,如下所示:

<%# Convert.ToString(Eval("Description")).Substring(0, 50) %>

“OR”

在aspx页面中为ListView创建ItemDataBound事件

<asp:Label ID="lblDescription" runat="server" Text=""></asp:Label>

在后面的代码中,创建ItemDataBound

protected void lvData_ItemDataBound(object sender, ListViewItemEventArgs e)
{
    if (e.Item.ItemType == ListViewItemType.DataItem)
    {
        Blog blg = (Blog)e.Item.DataItem;
        Label lblDescription = (Label)e.Item.FindControl("lblDescription");
        lblDescription.Text = blg.Description.Substring(0, 50);
    }
}

要剥离HTML标签,请参见此处:http://www.dotnetperls.com/remove-html-tags

In aspx page, you can directly take string part as below:

<%# Convert.ToString(Eval("Description")).Substring(0, 50) %>

"OR"

In aspx page and create ItemDataBound event for the ListView

<asp:Label ID="lblDescription" runat="server" Text=""></asp:Label>

In code behind, create ItemDataBound

protected void lvData_ItemDataBound(object sender, ListViewItemEventArgs e)
{
    if (e.Item.ItemType == ListViewItemType.DataItem)
    {
        Blog blg = (Blog)e.Item.DataItem;
        Label lblDescription = (Label)e.Item.FindControl("lblDescription");
        lblDescription.Text = blg.Description.Substring(0, 50);
    }
}

To strip HTML tags please see here: http://www.dotnetperls.com/remove-html-tags

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文