主页 > 知识库 > 关于ListView下隐藏控件的解决方案分享

关于ListView下隐藏控件的解决方案分享

热门标签:厦门商铺地图标注 上海杨浦怎么申请申请400电话 地图标注多个行程 云南外呼电销机器人系统 铜川小型外呼系统运营商 浙江外呼系统怎么安装 陕西人工外呼系统哪家好 山西防封卡电销卡套餐 海外地图标注门市标
这是ListView模板里的代码,贴一下,方便理解:
方案一:
复制代码 代码如下:

SPAN style="FONT-SIZE: 15px">就是想把DeleteButton 和EditButton 2个按钮隐藏/SPAN>

复制代码 代码如下:

ItemTemplate>
tr>
td>
asp:Button ID="DeleteButton" runat="server" CommandName="Delete" Text="删除" />
asp:Button ID="EditButton" runat="server"
CommandName="Edit" Text="编辑" />
/td>
td style="">
div style="width: 30px;">
asp:Label ID="UserNameLabel" runat="server" Text='%# Eval("UserName") %>' Width="30px" />/div>
/td>
td>
asp:Label ID="AgeLabel" runat="server" Text='%# Eval("Age") %>' />
/td>
td>
asp:Label ID="IdentityCardLabel" runat="server" Text='%# Eval("IdentityCard") %>' />
/td>
td>
asp:Label ID="LoginDateLabel" runat="server" Text='%# Eval("LoginDate","{0:yyyy-MM-dd}") %>' />
/td>
td>
asp:Label ID="LeaveDateLabel" runat="server" Text='%# Eval("LeaveDate","{0:yyyy-MM-dd}") %>' />
/td>
td>
asp:Label ID="PopulationLabel" runat="server" Text='%# Eval("Population") %>' />
/td>
td>
asp:Label ID="HouseIDLabel" runat="server" Text='%# Eval("HouseID") %>' />
/td>
/tr>
/ItemTemplate>

一开始,觉得这挺简单,就写下了下面的代码:
复制代码 代码如下:

protected void ListView1_ItemCreated(object sender, ListViewItemEventArgs e)
{
Button DeleteButton = (Button)ListView1.FindControl("DeleteButton");
Button EditButton = (Button)ListView1.FindControl("EditButton");
string username = Session["username"].ToString();
if (username != "admin")
{
EditButton.Visible = false;
DeleteButton.Visible = false;
}
}

可是,当运行的时候,就开始报错说,将对象引用设置到对象的实例。就是说没有找到这个控件,我就很奇怪了,觉得很没有道理。按理ItemCreated是在初始化行之后,然后进行找控件,应该没问题。
这个问题,想了很久,没有结果,然后就和我一个同学(他技术不错)开始讨论,刚开始他说是,就是说当运行页面的时候,在
去查看源码带的时候,发现DeleteButton这个控件的ID 变样了,变成了ListView1_ctrl0_DeleteButton这样子。对于这个问题,
我一直到现在还没有想通,不知道MS怎么会搞这个出来?服务器控件不是好好的渲染到页面了,怎么变ID了呢?没理由。呵呵~~
然后,我同学经过调试后,给出了一个解决方案是:
复制代码 代码如下:

protected void ListView1_ItemCreated(object sender, ListViewItemEventArgs e)
{
Button DeleteButton = (Button)ListView1.FindControl("DeleteButton");
Button EditButton = (Button)ListView1.FindControl("EditButton");
string username = Session["username"].ToString();
if (username != "admin")
{
if (DeleteButton != null EditButton != null)
{
EditButton.Visible = false;
DeleteButton.Visible = false;
}
}
}

这样子就可以了。就是多加了一句:if (DeleteButton != null EditButton != null)的判断。
方案二:
很有才的是,我宿舍的一位河北的同学也给出了一种解决方案,不过这种写法看起来有点不可思议,呵呵,一起看看
吧!
复制代码 代码如下:
asp:Button ID="DeleteButton" runat="server" Visible='%#Session["username"]=="admin"?true:false %>'

就是这样子,也可以把控件给隐藏。因为session是全局变量,所以可以在页面中取到这个值。

作者:Lanny☆兰东才
您可能感兴趣的文章:
  • listview 选中高亮显示实现方法
  • Android ListView数据绑定显示的三种解决方法
  • Android通过LIstView显示文件列表的两种方法介绍
  • android开发教程之listview显示sqlite数据
  • Android ListView中动态显示和隐藏Header&Footer的方法
  • Android编程实现Listview点击展开和隐藏的方法
  • Android中ListView Item布局优化技巧
  • android动态布局之动态加入TextView和ListView的方法
  • ListView的Adapter使用(绑定数据) 之 自定义每一项的布局去绑定数据
  • 神奇的listView实现自动显示隐藏布局Android代码

标签:朔州 西双版纳 自贡 常州 信阳 孝感 莱芜 许昌

巨人网络通讯声明:本文标题《关于ListView下隐藏控件的解决方案分享》,本文关键词  关于,ListView,下,隐藏,控件,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《关于ListView下隐藏控件的解决方案分享》相关的同类信息!
  • 本页收集关于关于ListView下隐藏控件的解决方案分享的相关信息资讯供网民参考!
  • 推荐文章