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.
我想aspx在配置文件属性的文件中包含我的图像的部分 URL 地址(目录名称)。在这种情况下, Property 被调用ThemeDir,如下所示:
aspx
ThemeDir
<asp:Image ID="MyImage" runat="server" ImageUrl="/UserResources/" + Profile.ThemeDir + "/Save.png" />
也许使用 Eval 或<# ?
<# ?
由于某些特定原因,我不想在服务器端执行此操作,它必须位于同一个 aspx 文件中。