我想通过后面的代码访问 LoginView 控件的 AnonymousTemplate 中写的文本。
问问题
1169 次
1 回答
0
您将登录名转换为可见模板,您必须看到如下内容:
<asp:Login ID="Login1" runat="server" >
<LayoutTemplate>
<table border="0" cellpadding="1" cellspacing="0" >
<tr>
<td>
...
<asp:TextBox ID="UserName" runat="server"></asp:TextBox>
....
然后在你后面的代码上找到你的控制:
TextBox TheUserName = (TextBox)Login1.FindControl("UserName");
您放置正确的用户 ID,您希望获取和更改的控件的位置。
于 2012-09-01T13:32:40.250 回答