我能够很好地更新数据库,但如何将从数据库中提取的当前信息提取到“编辑”文本框中。
这是我目前的代码:
<asp:ListView ID="ListView1" runat="server" DataSourceID="Details">
<ItemTemplate>
<div class="col-xs-11">
<asp:Label ID="passwordname" runat="server"
Text="Current Password:" />
<asp:Label ID="password" runat="server"
Text='<%# Eval("Password") %>' />
</ItemTemplate>
</asp:ListView>
<asp:TextBox ID="editpassword" runat="server"
placeholder='<%# Eval("Password") %>' Text="New Password">
</asp:TextBox>
如何获取文本框editpassword以显示存储的当前密码?
答案 0 :(得分:0)
您是否尝试绑定了asp:TextBox的值?
此外,不要使用Eval(),而应考虑模型绑定。
$('.example a').css('color', 'red');