Imar,
This should be a quick question, i hope.
Using:
VS2010 Pro
SQL Server 2008 Developer
I've done the Implementing the NavigateURL Property "try it out" and it works. However, Visual studio is giving me an unsettling squiggly line in part of the new code.
Within the AboutUs.aspx.
vb file the Banner2.NavigateURL has a blue-ish squiggly line under it with the warning/error: "'NavigateURL' is not a member of 'ASP.controls_banner_ascx'."
What's the deal?
The block of code:
Partial Class About_AboutUs
Inherits BasePage
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
Banner2.NavigateURL = "http://imar.spaanjaars.com"
End If
End Sub
End Class
Also, may be completely unrelated but within the MasterPage Frontend.master i was getting a warning that <LevelStyles> are not supported. Not sure about that one either. I commented the opening and closing tag out and the masterpage functionality doesn't seem to be affected.
What are your thoughts on this?
Thank you,
Christopher