Hello all,
In the generated asp.net code from visual web developer 2010, I see the following code:
<%@ Control Language="C#" ClassName="Header" %>
<asp:Panel ID="Panel1" runat="server">
<img alt="xxx"
src="Images/bird.jpg"
width="800" height="110"/>
</asp:Panel>
<asp:Panel id="menuPanel" runat="server">
<a href="1.aspx">Home</a> |
<a href="2.aspx">Titles</a> |
<a href="3.aspx">Authors</a> |
<a href="4.aspx">Publishers</a>
</asp:Panel>
- What is the meaning of
<%@
in asp.net? - What is the meaning of
<asp:Panel
?
I see other examples, <asp:Button
<asp:Label
, etc.
Thank you