我正在尝试将名称(字符串)插入到测试数据库(sqlce)中。基本上,用户将在文本框(input_box)中键入名称,然后单击“插入按钮”。点击按钮后,调用“提交”功能。我希望文本框中的文本用作insertcommand的参数。运行它时我没有收到任何错误。但是当我检查表中的数据时,只插入“null”。我正在尝试学习asp.net。任何帮助,将不胜感激。谢谢。
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server"><title>Test run</title></head>
<script language="C#" runat = "server">
void Submit(object o, EventArgs e)
{
SqlDataSource1.Insert();
}
</script>
<body style="height: 395px">
<form id="form1" runat="server">
<asp:TextBox ID="Input_box" runat="server"></asp:TextBox>
<asp:Button ID="Insert_button" runat="server" Text=" Insert Button" OnClick = "Submit"/>
<asp:SqlDataSource
ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
InsertCommand="INSERT INTO Incident_Table(Assignee) VALUES (@assignee)"
ProviderName="<%$ ConnectionStrings:ConnectionString.ProviderName %>"
SelectCommand="SELECT Assignee FROM Incident_Table">
<InsertParameters>
<asp:FormParameter Name="assignee" FormField ="name"/>
</InsertParameters>
</asp:SqlDataSource>
</form>
</body>
</html>
答案 0 :(得分:0)
你应该替换它:
<asp:FormParameter Name="assignee" FormField ="name"/>
使用:
<asp:FormParameter Name="assignee" FormField="Input_box" />