摘要:
public int max(int a[100]){int c;c=a[0]; for(int i=1;ic) c=a[i];return c;} 阅读全文
摘要:
1.使用GridView提示选择到的行,可选择多行问题? 怎么样才能单击此行,其它的以前选择行取消选择状态呢。步骤1.给GridView的创建RowCreated事件。具体代码如下: protected void gv_typelist_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataCont... 阅读全文
摘要:
1.在GridView中 鼠标移动到行 该行颜色变换 步骤1.为GridView添加RowCreated的事件。事件代码如下: protected void gv_typelist_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Dat... 阅读全文