0
私はASP.NETを初めて使用しています。私はGridView
に列を追加する動的APIの応答に基づいて、各返された行のために、私は私を埋めるためにAPIを呼び出したいのでAPIレスポンスに基づいてGridViewの列データを入力してください
id User secretcode
1 u1 {response from the API based on the Id value}
2 u1 {response from the API based on the Id value}
3 u1 {response from the API based on the Id value}
4 u1 {response from the API based on the Id value}
5 u1 {response from the API based on the Id value}
id
とUser
は、私のデータベーステーブル(ユーザ)に既にあります3列、すなわちsecretcode
。基本的に、私はForEachループをどこで使うべきかと混同しています。
これは、どの私が働いている大まかなコードは次のとおりです。
DataTable table = new DataTable();
DataColumn col3 = new DataColumn("Secretcode");
col3.DataType = System.Type.GetType("System.Int");
table.Columns.Add(col3);
row[col3] = {response data from API}
gvTest.DataSource = table;
gvTest.DataBind();
thnx that helped –