クエリ内で JPG ファイルのファイル名を取得している場合は、ASP ページ<Columns> </Columns>
で GridView のタグの下に次のようなものを追加できます。
<asp:ImageField DataImageUrlField="YourJPGFileNameColumn"
DataImageUrlFormatString="~\YourPathWhereTheImageIs\{0}.jpg" >
<ControlStyle Width="100px" />
</asp:ImageField>
「YourJPGFileNameColumn」はクエリで返される列名である必要があり、{0} はクエリで返される値が存在する場所です。
たとえば、クエリが次のようなテーブルを返す場合:
| ProductID |
-----------
| 1234 |
| 010102 |
| 5678 |
次のようにコードを記述します。
<asp:ImageField DataImageUrlField="ProductID"
DataImageUrlFormatString="~\YourPathWhereTheImageIs\{0}.jpg" >
<ControlStyle Width="100px" />
</asp:ImageField>
よろしく。