itemdatabound小结

itemdatabound小结在DATAGRID中,如果要对某些记录进行格式化或者修饰,用到itemdatabound事件比较方便,比如,要显示某人的存款金额已经少于某个数额了,要用红色来显示等。itemdatabound事件发生在数据绑定到datagrid后,而其内容发送到客户端前。比如privatevoidOnItemDataBound(objectsender,       System.Web.UI.WebC

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用
在DATAGRID中,如果要对某些记录进行格式化或者修饰,用到itemdatabound事件比较方便,

比如,要显示某人的存款金额已经少于某个数额了,要用红色来显示等。itemdatabound事件发生在

数据绑定到datagrid后,而其内容发送到客户端前。比如

private void OnItemDataBound(object sender,

        System.Web.UI.WebControls.DataGridItemEventArgs e)

{

    // Check if the current row contains items; if it’s

    // a header or footer row that will throw an error

    if (e.Item.ItemType == ListItemType.Item ||

        e.Item.ItemType == ListItemType.AlternatingItem)

    {

        // Get a copy of the “dgLabel2” label that contains the

        // “Balance” value

        Label lblBalance = (Label)e.Item.FindControl(“dgLabel2”);

        // Convert the value contained in the label to a double type

        double dblBalance = Convert.ToDouble(lblBalance.Text);

        // If that numeric value is negative

        if(dblBalance < 0)

            // …display it in red

            e.Item.Cells[3].ForeColor = System.Drawing.Color.Red;

        // Get a copy of the “dgLabel1” label that contains the

        // “Country” value

        Label lblCountry = (Label)e.Item.FindControl(“dgLabel1”);

        // …convert it to a string

        string strCountry = lblCountry.Text;

        // If it’s a North American country…

        if(strCountry == “USA” ||

            strCountry == “Mexico” ||

            strCountry == “Canada”)

        {

            // Get a copy of the “dgLabel0” label that contains the

            // “CustomerID” value, we’ll use it in the query string

            // for the popup

            Label lblID = (Label)e.Item.FindControl(“dgLabel0”);

            // …convert it to a string

            string strID = lblID.Text;

            // Replace the “Country” value displayed in the datagrid

            // with “Jamaica”, placed in a hyperlink who’s OnClick

            // event calls a javascript “popup” window

            e.Item.Cells[2].Text = “<a href=/”popup.aspx?id=” + strID +

                “/” onClick=/”popup(this.href); return false;/”>Jamaica</a>”;

        }

    }

}

而itemcreated事件和它有些不同,itemcreated发生在itemdatabound事件前,当datagrid中的每一项创建了但没

有数据时,所以不能用itemcreated事件来修改或者读取数据

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/182361.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • widthStep、width

    widthStep、widthwidthStep表示存储一行像素需要的字节数。widthStep必须是4的倍数,如果8U图像宽度为3,那么widthStep是4,加一个字节补齐。这个图像的一行需要4个字节,只使用前3个,最后一个空在那儿不用。也就是一个宽3高3的图像的imageData数据大小为4*3=12字节。转自:http://blog.sina.com.cn/s/blog_4b46937b0100

  • ssh 命令连接

    ssh 命令连接Linuxssh命令详解SSH(远程连接工具)连接原理:ssh服务是一个守护进程(demon),系统后台监听客户端的连接,ssh服务端的进程名为sshd,负责实时监听客户端的请求(IP22端口),包括公共秘钥等交换等信息。ssh服务端由2部分组成:openssh(提供ssh服务)openssl(提供加密的程序)ssh的客户端可以用XSHELL,Securecrt,Moba…

  • socat介绍「建议收藏」

    socat是一個netcat(nc)的替代產品,可以稱得上nc++。socat的特點就是在兩個流之間建立一個雙向的通道。socat的地址類型很多,有ip,tcp,udp,ipv6,pipe,exec,system,open,proxy,openssl,等等。看一個例子:c:\>socat-tcp:192.168.1.18:80這個命令等同於nc192.168.1

  • Unzip Yearly Subscription_@mapkey注解

    Unzip Yearly Subscription_@mapkey注解原文:http://werkzeug.pocoo.org/docs/0.12/local/#werkzeug.local.LocalProxySoonerorlateryouhavesomethingsyouwanttohaveineverysinglevieworhelperfunctionorwhatever.InPHPthewayt

  • 网页游戏公司遇到的政策难题有哪些_遇到退不出的网页怎么办

    网页游戏公司遇到的政策难题有哪些_遇到退不出的网页怎么办原文地址:http://www.chinagcn.com/news/show.php?itemid=99国务院412号令规定保留新闻出版总署“出版境外著作权人授权的电子出版物(包含互联网游戏作品)审

  • 二进制减法图解_二进制加法的算法图解

    二进制减法图解_二进制加法的算法图解二进制减法类似于十进制的减法,我们从十进制的减法来推出二进制减法如何进行运算。十进制减法例如74323-47562=26761的运算。灰色部分为计算过程,绿色字为被减一得到的数,红色字为借一后得到的数。在运算过程中,从右往左逐位进行计算。3-2=1;2不够减6,向前借一后加10变成12;12-6=6;3在上一步被借一所以减为2,2不够减5,…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号