这张表中,只有psId,和photoId,posttime能被访问出来,访问其他的就会出现我所说的问题,求助,求助
sql语句如下:
select top 10 * from userPhotos order by psId
把SqlDataSource和DataList的代码贴全
<td class="auto-style2">最新上传照片</td> </tr> <tr> <td class="auto-style2"> <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:photoDataConnectionString %>" SelectCommand="select top 10 * from userPhotos order by photoId"></asp:SqlDataSource> <asp:DataList ID="DataList4" runat="server" DataKeyField="photoId" DataSourceID="SqlDataSource2"> <ItemTemplate> <%#Eval("Name") %> </ItemTemplate> </asp:DataList> </td> </tr> </table> </div>
这里是没有什么错的,我检查后发现,是建表的时候,表名称多了一个空格,我去,太坑了。谢谢你了。