日期:2014-05-18  浏览次数:20458 次

图片选取问题啊--
就是需要个按扭。
1:点击按扭读取服务器根目录里面的图片(根目录里面还有文件夹)。
2:点击图片后。左边的text取这个图片的路径信息
(显示成/pic/***.jpg或者   /pic/教材类/***.jpg)之类的信息。
3:整不来哦。
4:有位老师帮我写了个前台的。可是显示不出来数据。
5:后台应该怎样写啊?

<asp:RepeaterID= "Repeater1 "   Runat= "server ">     <ItemTemplate>                                                                                                        
<input   type= 'button '   onclick= "javascript:document.getElementById( 'Text1 ').value= '/pic/ <%#GetName(Container.DataItem)%> ' "   value= '选择 '>
  <%#GetName(Container.DataItem)%>
  </ItemTemplate>
  </asp:Repeater>



------解决方案--------------------
不知道如何遍历文件夹中的图片?,看看这个
http://blog.csdn.net/21aspnet/archive/2007/04/04/1551222.aspx
------解决方案--------------------
string sPath = Server.MapPath( "/pic "); DirectoryInfo dir = new DirectoryInfo(sPath); FileInfo[] fs = dir.GetFiles( "*.jpg "); this.rpList.DataSource = fs; this.rpList.DataBind()