我通过 ASP.NET 中的 DetailsView 控件实现了与数据库的简单连接。其中一个字段是密码,因此我希望在键入时隐藏其内容。我的第一个想法是 TextBox 的 TextMode="Password" 但由于 BoundField 类没有实现它,所以失败得很惨。我猜它必须通过事件处理程序以编程方式完成,但我根本不知道如何。
如果需要,这是我迄今为止编写的标记:
<body>
<form id="form1" runat="server">
<div class="register" runat="server">
<asp:DetailsView ID="InsertData" runat="server" HorizontalAlign="Center"
Height="100px" Width="170px"
AutoGenerateRows="False" DataSourceID="usersConnectionString"
DefaultMode="Insert" OnItemCommand="Button_click" OnItemInserted="Insert_click">
<Fields>
<asp:BoundField DataField="userName" HeaderText="Name"
SortExpression="userName" />
<asp:BoundField DataField="userPassword" HeaderText="Password"
SortExpression="userPassword" />
<asp:BoundField DataField="userEmail" HeaderText="Email"
SortExpression="userEmail" />
<asp:CommandField ShowInsertButton="True" />
</Fields>
</asp:DetailsView>
<asp:SqlDataSource ID="usersConnectionString" runat="server"
ConnectionString="<%$ ConnectionStrings:usersConnectionString %>"
InsertCommand="INSERT INTO user(userName, userPassword, userEmail) VALUES (@userName, @userPassword, @userEmail)">
<InsertParameters>
<asp:Parameter Name="userName" Type="String" />
<asp:Parameter Name="userPassword" Type="String" />
<asp:Parameter Name="userEmail" Type="String" />
</InsertParameters>
</asp:SqlDataSource>
<asp:Label ID="Message_label" ForeColor="red" Visible="false" runat="server" Text="[messageLabel]"></asp:Label>
</div>
</form>
</body>