tailsView控件InsertTemplate则文本框与Us

tailsView控件InsertTemplate则文本框与Us

本文介绍了pre-填充DetailsView控件InsertTemplate则文本框与User.Identity.Name价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图把验证用户的用户名上插入项模板。我需要最简单的解释,因为我很新。我真的AP preciate你的帮助。这是我有:

I am trying to put the UserName of the authenticated user on an Insert item template. I need the easiest explanation since I am very new. I really appreciate your help. This is what I have:

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

感谢

何塞

推荐答案

从codebehind做到这一点。

Do this from the codebehind

<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

这篇关于pre-填充DetailsView控件InsertTemplate则文本框与User.Identity.Name价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 17:34