zoukankan      html  css  js  c++  java
  • 三文利用

    View Code
    <asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="Black" GridLines="None"
    BorderWidth="1px" BackColor="#73B857" AutoGenerateColumns="False" Width="550px"
    OnRowCommand="GridView1_RowCommand">
    <RowStyle BackColor="#c3ffab" />
    <Columns>
    <asp:BoundField DataField="RWTitle" HeaderText="任务名称">
    <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
    </asp:BoundField>
    <asp:TemplateField HeaderText="任务状态">
    <ItemTemplate>
    <%# JC(Eval("RWState").ToString()) %>
    </ItemTemplate>
    <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
    </asp:TemplateField>
    <asp:BoundField DataField="FPData" HeaderText="任务布时间">
    <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
    </asp:BoundField>
    <asp:TemplateField HeaderText="操作">
    <ItemTemplate>
    <asp:ImageButton ID="ImageButton1" runat="server" OnClientClick="return confirm('确定接受此任务吗?')"
    CommandName="js" CommandArgument='<%# Eval("RWFPID") %>' Visible='<%# Convert.ToInt32(Eval("RWState"))==0?true:false %>'
    ImageUrl="~/images/jiesou.gif" />
    &nbsp;<asp:ImageButton ID="ImageButton2" runat="server" OnClientClick="return confirm('确定拒绝此任务吗?')"
    CommandName="jj" CommandArgument='<%# Eval("RWFPID") %>' Visible='<%# Convert.ToInt32(Eval("RWState"))==0?true:false %>'
    ImageUrl="~/images/jujue.gif" />
    &nbsp;<asp:ImageButton ID="ImageButton3" runat="server" OnClientClick="return confirm('确定完成此任务吗?')"
    CommandName="wc" CommandArgument='<%# Eval("RWFPID") %>' Visible='<%# Convert.ToInt32(Eval("RWState"))==2?true:false %>'
    ImageUrl="~/images/wancheng.gif" />
    &nbsp;<asp:ImageButton ID="ImageButton4" runat="server" OnClientClick="return confirm('确定放弃此任务吗?')"
    Visible='<%# Convert.ToInt32(Eval("RWState"))==2?true:false %>' CommandName="fq"
    CommandArgument='<%# Eval("RWFPID") %>' ImageUrl="~/images/fangqi.gif" />
    <asp:Label ID="Label1" runat="server" ForeColor="Red" Text="不要气馁!再接再厉!" Visible='<%# Convert.ToInt32(Eval("RWState"))==3?true:false %>'></asp:Label>
    <asp:Label ID="Label2" runat="server" ForeColor="Blue" Text="表现不错,请继续努力!" Visible='<%# Convert.ToInt32(Eval("RWState"))==4?true:false %>'></asp:Label>
    </ItemTemplate>
    <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
    </asp:TemplateField>
    </Columns>
    <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
    <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
    <SelectedRowStyle BackColor="#fff000" Font-Bold="True" ForeColor="#000" />
    <HeaderStyle BackColor="#73B857" Font-Bold="True" ForeColor="White" />
    <EditRowStyle BackColor="#2461BF" />
    <AlternatingRowStyle BackColor="White" />
    </asp:GridView>

  • 相关阅读:
    使用Jenkins进行android项目的自动构建(3)
    使用Jenkins进行android项目的自动构建(2)
    使用Jenkins进行android项目的自动构建(1)
    testlink 从1.8.5 升级到 1.9.8
    779. 第K个语法符号(Leetcode)
    687. 最长同值路径(Leetcode)(递归+树)
    116. 飞行员兄弟(Acwing)(递归+位运算)
    95. 费解的开关(Acwing)(分析+递推)
    Java遇到输入速度瓶颈时的解决办法
    92. 递归实现指数型枚举(Acwing)(递归)
  • 原文地址:https://www.cnblogs.com/XuYiHe/p/2185778.html
Copyright © 2011-2022 走看看