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.
モジュールは機能していませんが、常に同じパスの同じページにあるとは限らないため、C#でイメージタグのソースを設定しようとしています。
<img id="3ways" src='"<%= ConfigurationManager.AppSettings["Images08"].ToString() + "/3ways.png"%>"' border="0" style="padding-bottom:2px;">
runat="server" を使用しないのはなぜですか? 例えば:
<img id="3ways" runat="server" src="" border="0" style="padding-bottom:2px;">
次に、バックエンドでこれを行います。
3ways.Attributes["src"] = ConfigurationManager.AppSettings["Images08"].ToString() + "/3ways.png"
それは、懸念事項のよりクリーンで優れた分離です。