0

我正在尝试将经过身份验证的用户的用户名放在插入项目模板上。我需要最简单的解释,因为我很新。我真的很感谢你的帮助。这就是我所拥有的:

    <InsertItemTemplate>
         <asp:LoginName ID="LoginName2" runat="server" User.Identity.Name='<%# Bind("UserName") %>'/>
    </InsertItemTemplate>

谢谢

何塞

4

1 回答 1

0

从代码隐藏中执行此操作

<asp:DetailsView ID="DetailsView1" runat="server" OnDataBound="DetailsView1_DataBinding">
<InsertItemTemplate>
     <asp:LoginName ID="LoginName2" runat="server" />
</InsertItemTemplate>    
</asp:DetailsView>


Protected Sub DetailsView1_DataBinding(ByVal sender As Object, ByVal e As System.EventArgs) Handles DetailsView1.DataBinding

LoginName2.text =User.Identity.Name

End Sub
于 2012-08-12T22:14:08.683 回答