嗨,您能帮我解决我的脚本遗失或问题吗?我一直在编译错误:预期的标识符。在字符“。[i”中
myRange.Value2 = GridView1.[i,j].Value + ";" == null ? "" : GridView1.[i,j].Text + ";";
最佳答案
这将是:
myRange.Value2 = GridView1.Rows[i].Cells[j].Text+ ";" == null ? "" : GridView1.Rows[i].Cells[j].Text + ";";
GridView.Rows[i].Cells[j]
其中
i = row index
和j = cell index
关于mysql - 为什么要期望标识符?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37961957/