I have an Image control (for logo) on the master page as follows:
<asp:Image ID="imgLogo" ImageUrl="~/Images/logo.jpg" runat="server" />
I am allowing my users to upload their own logos. So on the page where they upload their logo I want to replace the existing logo with the newly uploaded logo. I tried the following but none of them worked:
1) Did a Response.Redirect back to the same page and it didn't work.
2) Tried the below code after the image upload is complete and even this didn't work:
Image imgLogo = (Image)Master.FindControl("imgLogo");
imgLogo.ImageUrl = "~/Images/newLogo.jpg";