大家好,我正在研究mvc4,我在这里遇到一些问题,一旦我得到我存储在数组中的值,比如'String []',我正在从那个iam movint这些值到我的数据库表,但我是总是只有一个问题'输入字符串格式不正确'任何人都可以帮助我吗?
这里我的代码如下:'
string[] BundleItemID = form.GetValues("txtbundleid");
for (int i = 0; i < skuid.Length; i++)
{
ProductBundleItem productbundleitem = new ProductBundleItem();
if (!string.IsNullOrEmpty(BundleItemID[i]))
{
productbundleitem.BundleItemId = Convert.ToInt64(BundleItemID[i]);
}
}
当我尝试将值从“Convert.ToInt64(BundleItemID[i])”移动到“BundleItemId”时,我收到错误“输入字符串格式不正确”提前谢谢