0

我正在使用 ASP.NET (C#),并且我有将新行插入数据库的代码。当我运行它时,我收到错误“输入字符串的格式不正确”。

我想我已经将这个错误缩小到用户 GUID 唯一标识符,它需要传递到插入语句中。(从 asp:login 创建)

我知道我可以通过 using 调用此 UserID,Membership.GetUser(User.Identity.Name).ProviderUserKey.ToString() 但随后我需要使用转换回 Guidnew Guid(string)

这似乎对我不起作用。这是我的代码隐藏:你能发现任何错误吗?

public partial class LoggedIn_CreateDoc : System.Web.UI.Page
{
    SqlConnection sqlConn;
    SqlDataAdapter sqlDA;
    DataSet ds;
    String strConn = ConfigurationManager.ConnectionStrings["1722555Connection"].ConnectionString;

    protected void createDoc_Click(object sender, EventArgs e)
    {
        SqlConnection connection = new SqlConnection();

        connection.ConnectionString = ConfigurationManager.ConnectionStrings["1722555Connection"].ConnectionString;
        connection.Open();

        SqlCommand cmd = new SqlCommand();
        cmd.Connection = connection;
        cmd.CommandTimeout = 0;

        string commandText = "INSERT INTO Documents (Name, Description, RcdID, Location, AccessLevel, DateCreated, AuthorID, DocStatus, EngStatus, QaStatus, DesignStatus) VALUES(@Name, @Description, @RCD, @Location 1, @Date, @AuthorID, 1, 1, 4, 4)";
        cmd.CommandText = commandText;
        cmd.CommandType = CommandType.Text;

        cmd.Parameters.Add("@Name", SqlDbType.VarChar, 50);
        cmd.Parameters.Add("@Description", SqlDbType.VarChar, 300);
        cmd.Parameters.Add("@RCD", SqlDbType.Int);
        cmd.Parameters.Add("@Location", SqlDbType.Int);
        cmd.Parameters.Add("@Date", SqlDbType.DateTime);
        cmd.Parameters.Add("@AuthorID", SqlDbType.UniqueIdentifier);

        cmd.Parameters["@Name"].Value = TextBoxDocTitle.Text;
        cmd.Parameters["@Description"].Value = TextBoxDocDescription.Text;
        cmd.Parameters["@RCD"].Value = ListBoxSeries.DataValueField;
        cmd.Parameters["@Location"].Value = ListBoxLocation.DataValueField;
        cmd.Parameters["@Date"].Value = DateTime.Now;
        cmd.Parameters["@AuthorID"].Value = new Guid(Membership.GetUser(User.Identity.Name).ProviderUserKey.ToString());

        cmd.ExecuteNonQuery();

        connection.Close();

        Response.Write(@"<script language='javascript'>alert('Your new document has been created. \n You can now find it in your Task Panel!');</script>");

        Response.Redirect("TaskPanel.aspx");
    }
}
4

2 回答 2

2

我不认为问题出在你的ProviderUserKey. 演员表不会失败 - 插入会失败。

您需要将RCDand转换Location为 int 值吗?您当前正在尝试将字符串传递给 int 字段。

您应该使用ListBox.SelectedValue从这些字段中检索选定的值,之后您可以使用Int32.TryParse将它们转换为整数(或者Int32.Parse如果您希望在转换失败时抛出异常)。

ListBox.DataValueField不用于从 中检索所选值ListBox,而是告诉它应该将绑定数据源中的哪个字段视为其值,并且 - 因此 - 它是字段的名称,而不是其中的值。

于 2013-01-31T19:28:01.210 回答
0

您应该检查为所有 cmd.Parameters 分配了哪些值,并确保这些值与数据库中列的数据类型和限制一致。

于 2013-01-31T19:14:49.783 回答