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.
必要な画像が配置されている場所のURLを含む文字列変数がありますが、この値を画像に渡すにはどうすればよいですか?<%my variable here%>を実行しようとしましたが、機能しませんでした。
<asp:Image ImageUrl="" runat="server"/>
<asp:Image Id="image1" ImageUrl="<%= yourVariable %>" runat="server"/>
別の方法は、コードビハインドファイルに設定することです。
image1.ImageUrl = "http://example/logo.png"