本文介绍了动态更新记录时出错. ?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

他在我的页面中使用了动态功能.更新记录时出现了
之类的错误"

hi am using dynamic in my page .while updating record am getting error like
"

startIndex cannot be less than zero
parameter name :startIndex

"
在这行

"
in this line

fieldNames.Remove(fieldNames.Length - 1, 1);


可以给我发送任何一种错误类型的错误以及如何解决此问题..
谢谢


can any one tel me wat type of error and how to solve this..
thanks

推荐答案

if(fieldNames.Length > 0)
{
fieldNames.Remove(fieldNames.Length - 1, 1);
}



希望对您有帮助!



hop it will help!!




这篇关于动态更新记录时出错. ?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-04 21:18