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.
コードビハインドを使用してasp:linkbuttonに背景画像を追加する方法は?リンクをクリックしたら背景画像を変更したいですか?どうも
<asp:LinkButton ID="home" runat="server">home</asp:LinkButton>
in page_load event when you click and make a postback change image if (IsPostBack) { ImageButton1.ImageUrl = "~/Images/newimage.gif"; }