質問する
201 次
2 に答える
1
これらの画像がプロジェクト フォルダー内にない場合は、仮想フォルダー (myImages など) を作成してから画像にアクセスする必要がある場合があります。
@Url.Content("~/myImages/imgName.ext")
それ以外の場合は使用できます
@Url.Content("~/path_relative_to_main_folder/imgName.ext")
于 2013-03-07T14:20:48.990 に答える
1
Never use exact locations. It'll give you a headache. Instead, put a folder in your site's directory somewhere and then reference it with relative paths. For example:
<img src="@Url.Content("~/Images/ABC.png")" />
This means it is looking for the Images folder in your project's root directory.
于 2013-03-07T14:21:55.267 に答える