zoukankan      html  css  js  c++  java
  • listView绑定数据

    <asp:ListView ID="ListView1" InsertItemPosition="LastItem" DataKeyNames="PId" runat="server" DataSourceID="ObjectDataSource1" >
    <ItemTemplate>
    <tr style="">
    <td>
    <asp:Label ID="PIdLabel" runat="server" Text='<%# Eval("PId") %>' />
    </td>
    <td>
    <asp:Label ID="PTypeIdLabel" runat="server" Text='<%# Eval("PTypeId") %>' />
    </td>
    <td>
    <asp:Label ID="PUserIdLabel" runat="server" Text='<%# Eval("PUserId") %>' />
    </td>
    <td>
    <asp:Label ID="PTitleLabel" runat="server" Text='<%# Eval("PTitle") %>' />
    </td>
    <td>
    <asp:Label ID="PUrlLabel" runat="server" Text='<%# Eval("PUrl") %>' />
    </td>
    <td>
    <asp:Label ID="PDesLabel" runat="server" Text='<%# Eval("PDes") %>' />
    </td>
    <td>
    <asp:Label ID="PClicksLabel" runat="server" Text='<%# Eval("PClicks") %>' />
    </td>
    <td>
    <asp:Label ID="PTimeLabel" runat="server" Text='<%# Eval("PTime") %>' />
    </td>
    <td>
    <asp:Label ID="PUpLabel" runat="server" Text='<%# Eval("PUp") %>' />
    </td>
    <td>
    <asp:Label ID="PDownLabel" runat="server" Text='<%# Eval("PDown") %>' />
    </td>
    <td>
    <asp:Button ID="DeleteButton" runat="server" CommandName="Delete"
    Text
    ="Delete" />
    <asp:Button ID="EditButton" runat="server" CommandName="Edit" Text="Edit" />
    </td>
    </tr>

    </ItemTemplate>
    <EditItemTemplate>
    <tr style="">

    <td>
    <asp:TextBox ID="PIdTextBox" runat="server" Text='<%# Bind("PId") %>' />
    </td>
    <td>
    <asp:TextBox ID="PTypeIdTextBox" runat="server" Text='<%# Bind("PTypeId") %>' />
    </td>
    <td>
    <asp:TextBox ID="PUserIdTextBox" runat="server" Text='<%# Bind("PUserId") %>' />
    </td>
    <td>
    <asp:TextBox ID="PTitleTextBox" runat="server" Text='<%# Bind("PTitle") %>' />
    </td>
    <td>
    <asp:TextBox ID="PUrlTextBox" runat="server" Text='<%# Bind("PUrl") %>' />
    </td>
    <td>
    <asp:TextBox ID="PDesTextBox" runat="server" Text='<%# Bind("PDes") %>' />
    </td>
    <td>
    <asp:TextBox ID="PClicksTextBox" runat="server" Text='<%# Bind("PClicks") %>' />
    </td>
    <td>
    <asp:TextBox ID="PTimeTextBox" runat="server" Text='<%# Bind("PTime") %>' />
    </td>
    <td>
    <asp:TextBox ID="PUpTextBox" runat="server" Text='<%# Bind("PUp") %>' />
    </td>
    <td>
    <asp:TextBox ID="PDownTextBox" runat="server" Text='<%# Bind("PDown") %>' />
    </td>
    <td>
    <asp:Button ID="UpdateButton" runat="server" CommandName="Update"
    Text
    ="Update" />
    <asp:Button ID="CancelButton" runat="server" CommandName="Cancel"
    Text
    ="Cancel" />
    </td>
    </tr>
    </EditItemTemplate>

    </asp:ListView>
    <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetAllList"
    TypeName
    ="MyPhotoList.BLL.Photos"
    DataObjectTypeName
    ="MyPhotoList.Model.Photos" DeleteMethod="Delete"
    InsertMethod
    ="Add" UpdateMethod="Update">


    </asp:ObjectDataSource>
  • 相关阅读:
    Python批量 png转ico
    线性回归
    【论文集合】多语言机器翻译
    【论文集合】curriculum learning总结/课程学习论文
    crf++分词
    强化学习的探索策略方式
    关于multiprocessing中的logging的数据打印到本地失败或重复问题
    置信区间绘图、以10次平均值为例
    打印CSDN博客内容JS
    SUMO学习笔记(3)
  • 原文地址:https://www.cnblogs.com/gylspx/p/dsds.html
Copyright © 2011-2022 走看看