本文介绍了如何在类文件中调用textbox id,gridview id ....的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我是.net和C#的新手... 告诉我如何从ado类文件中的源文件中调用texbox id .. 告诉我一些示例... i'm new to .net and C#...tell me how to call texbox id from source file in ado class file..tell me some examples...推荐答案 if (dataGrid1.SelectedItems.Count > 0) { for (int i = 0; i < dataGrid1.SelectedItems.Count; i++) { System.Data.DataRowView selectedFile = (System.Data.DataRowView)dataGrid1.SelectedItems[i]; strdata = Convert.ToString(selectedFile.Row.ItemArray[1]); strdata1 = Convert.ToString(selectedFile.Row.ItemArray[2]); } } 这篇关于如何在类文件中调用textbox id,gridview id ....的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-27 20:49