Please accept my apology. I get frustrated sometimes, and probably should of just been more direct. On the other forum, I just ignore the questions now, and don't get involved anymore. Diagnostics: Sometimes you have to work backwards, and look at the final results in the browser output. If the results don't work, you have to pick it apart. So you start at the image tag, inspect the url. test the url in the browser bar. There's a ton of information in the browser source, it just takes some learning to read the info and understand it. If you code in CSharp, then the principals are the same. Now you work forward on the source, to make adjustments to what is sent back to the browser. The most common mistakes I see is in the use of Client Script Manager, and not registering the CS in OnInit. The 2nd mistake is not using CS WebResuorceUrl as the url in the image tag. The image url is a webresource. Sample Code in vb. This is for you to just get an idea of the stucture and use of of the client script manager, and the webresource url.
Protected Overrides Sub OnInit(ByVal e As System.EventArgs)
MyBase.OnInit(e)
Controls.Clear()
Dim cs As ClientScriptManager = Me.Page.ClientScript
Dim rsType As Type = Me.GetType()
Select Case \[Localization\]
Case 0
rm = New ResourceManager("Admin\_PP\_Standard.labels\_en", Assembly.GetExecutingAssembly())
ci = New CultureInfo("en-US")
Case 1
rm = New ResourceManager("Admin\_PP\_Standard.labels\_fr", Assembly.GetExecutingAssembly())
ci = New CultureInfo("fr-CA")
Case 2
rm = New ResourceManager("Admin\_PP\_Standard.labels\_es", Assembly.GetExecutingAssembly())
ci = New CultureInfo("es-MX")
End Select
Dim Comment As LiteralControl
Comment = New LiteralControl
Comment.Text = "<!-- SignUp V1.1 for ASP.NET 4.0 -->" & vbCrLf
Controls.Add(Comment)
Dim img\_Name As String = Nothing
Dim img\_Email As String = Nothing
Dim img\_ProgressIndicator As String = Nothing
Dim img\_Connect As String = Nothing
Dim img\_BG\_ModalProgress As String = Nothing
Select Case \[Page\_ColorTheme\]
Case 0 'Light
img\_Name = cs.GetWebResourceUrl(rsType, "Footer\_SignUp.ico-form\_person\_light.png")
img\_