引发的异常:“System.FormatException"

引发的异常:“System.FormatException”(位于 mscorlib.dll 中)
其他信息: 索引(从零开始)必须大于或等于零,且小于参数列表的大小。



 
解答:

  string sql = string.Format("select password from users where username ='{1}'", name);

把{ 1 }改为{ 0 }

  string sql = string.Format("select password from users where username ='{0}'", name);

你可能感兴趣的:(引发的异常:“System.FormatException")