after converting vs 2003 project to vs 2005 project

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nudrat
    New Member
    • Aug 2007
    • 38

    after converting vs 2003 project to vs 2005 project

    after i converted the vs 2003 project to Vs 2005 project.......s ome error occured: 1) server tag not well formed.
    2) some properties are supported in vs 2005 like style and all

    Quick reply will be appreciated.
    Thanks.
  • Curtis Rutland
    Recognized Expert Specialist
    • Apr 2008
    • 3264

    #2
    Originally posted by nudrat
    after i converted the vs 2003 project to Vs 2005 project.......s ome error occured: 1) server tag not well formed.
    2) some properties are supported in vs 2005 like style and all

    Quick reply will be appreciated.
    Thanks.
    A well formed server tag requires the attributes "ID" and "runat" runat must be equal to "server". Also, you must close every server tag. For example:
    [CODE=asp]<asp:Label ID="label1" runat="server"> </asp:Label>[/CODE]
    or
    [CODE=asp]<asp:Label ID="label1" runat="server" />[/CODE]

    Comment

    Working...