我已經創建了一個數據表併爲其添加了許多列。使用c將值分配給數據表中的特定列#
當數據表爲空時,我想爲特定列指定一個值。
就像在數據表中找到列名並賦值給它......這可能嗎?謝謝
dt_FAQ.Columns.Add("FQ_Question_1", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_1", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_2", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_2", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_3", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_3", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_4", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_4", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_5", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_5", typeof(string));
有一種情況,我只會得到必須分配給上面的數據表中的列「FQ_Answer_1」的值。在這種情況下,我想單獨賦值給該列,並將空字符串「」傳遞給其他列。可能嗎?
你的意思是創建一個單行?張貼一些代碼 –
@RajeshSubramanian用代碼更新了我的問題。請幫忙。謝謝 – Anuya