asp .net我在Arraylist 里放了一些 Dictionary<string,string> 如何绑定到Repeater里呢?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp .net我在Arraylist 里放了一些 Dictionary<string,string> 如何绑定到Repeater里呢?相关的知识,希望对你有一定的参考价值。
参考技术A 试试~... 没有调试过,直接拿来的.Dictionary<string, string> dict = new Dictionary<string, string>();
Repeater1.DataSource = dict;
Repeater1.DataBind();
<%# ((KeyValuePair<string, string>)Container.DataItem).Key %>
<%# ((KeyValuePair<string, string>)Container.DataItem).Value %>追问
你这个不对哦 我是 在list放的dictionary 一个dictionary 是一个对象!
我在页面的body里放了一个div,设置了div的宽度,为啥没有效果呢?页面还是充满整个body:
<body onkeydown="if(event.keyCode==8)event.keyCode=0;return false;">
<div style="width:960px;">
<div id="north">
<tr class="northtop">
<td class="northleft2">
</td>
<td class="northright" nowrap="nowrap">
系统管理员
欢迎使用全面预算管理系统!
<!--<a href="/new/j_spring_security_logout">注销</a>-->
<a href="javascript:logout();">注销</a>
</td>
<td width="65" valign="center"><span id='otherfunction'></span></td>
</tr>
</table>
<table id="north_bottom" class="north_bottom" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="topsplit">
<a href="javascript:toggletop();"><div></div></a>
</td>
<tr>
</table>
</div>
<div id='emptydiv' class="loadTip"></div>
<div id='tipMsgDiv' onmouseout="setMouseout(1)" onmouseover="setMouseout(0)" style="display:none;position: absolute;border: 2 solid skyblue;background-color:#fff; z-index: 10000;">
<table border="0" width="100%" height="100%" cellpadding="0" cellspacing="0">
<tr bgcolor="skyblue"><td height="20%" width="90%" >系统管理员:<br></td><td align="center">
<img onclick="hideTipMsgObj()" src="/new/themes/default/images/cancel.gif"/><br></td></tr>
<tr><td colspan="2"><div id='tipMsgContent' style="text-align: center;"></div></td></tr>
</table>
</div>
</div>
</body>
<div style="width:960px; margin:auto;"> 参考技术A 你没有超出隐藏。。。width:960px;overflow:Hidden;margin:0 auto; 参考技术B 一般给个背景色来测试
以上是关于asp .net我在Arraylist 里放了一些 Dictionary<string,string> 如何绑定到Repeater里呢?的主要内容,如果未能解决你的问题,请参考以下文章
UpdatePanel 里面放了两个Button,但是还是会全刷页面啊 ASP.NET
dropdownlist选择值里放了两级目录,如何让根目录不能点,只能选择根目录 怎样来写?
如何更改 createuserwizard 的样式? ASP.NET