Datalist用法

来源:互联网 发布:mac os high 编辑:程序博客网 时间:2024/06/11 03:25
dataolist绑定判断:<%#(DataBinder.Eval(Container.DataItem, "FIsSend").ToString() == "2")?"未收到":"已收到"%>

       Item效果://类里写    RowCreated事件用GridView

public static void rowColor(GridViewRow row)    
{       
if (row.RowType == DataControlRowType.DataRow)
{
row.Attributes.Add("onmouseover","c=this.style.backgroundColor;this.style.backgroundColor='#C2D3F0'");
row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
}
}


DataList:

<div class="borderdiv" title="<%# Eval("n_title")%>" onmouseover="this.style.cursor='hand';c=this.style.backgroundColor;this.style.backgroundColor='#C2D3F0'" onmouseout="this.style.backgroundColor=c">
                      <table cellpadding="0" cellspacing="0" border="0" width="400" height="20">
                      <tr>
                          <td height="20">
                              <%# Eval("n_title")%>
                          </td>
                          <td height="20">
                              <%# Eval("n_come")%>
                          </td>
                          <td height="20">
                              <%# Eval("n_time")%>
                          </td>
                      </tr>
                      </table>
                  </div>

        radiolist取值:var     res     =     document.getElementsByName("radiobutton");   
for(var     i=0;     i<res.length;     i++)   
if(res[i].checked)   
alert(res[i].value);

 
原创粉丝点击