Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
明らかなことを見逃しているのではないかと心配していますが、Razor ビューで Visual Basic DataTable オブジェクトを表示する方法を見つけることができませんでした。DataTable の行/列要素を必要な形式に変更する方法はありますか。
Visual Studio Professional 2012 を使用しています。
ありがとう
これは私にとってはうまくいきました。私はMVC/Razorを1日やっています。@dan-oのリンクされたソリューションよりもはるかに複雑ではないようです
<table> @For Each row In Model.myDataTable.Rows @<tr> <td>@row("col1") </td> <td>@row("col2") </td> </tr> Next </table>