CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 2003
    Location
    upstate NY
    Posts
    168

    Angry VS 2008... Config Issue?

    I recently upgraded from VS 2005 to VS 2008 and found a lot of problems.
    The major issue i'm dealing with now is "Error Creating Control"
    Here is an example:
    HTML
    Code:
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <ASP:SCRIPTMANAGER ID="ScriptManager1" runat="server" />
            <div>
            </div>
            <ASP:REPEATER ID="Repeater1" RUNAT="server">
                <ITEMTEMPLATE>
                </ITEMTEMPLATE>
            </ASP:REPEATER>
        </form>
    </body>
    </html>
    In the designer I get the following error message on the control:
    Error Creating Control - Repeater 1
    Property 'ITEMTEMPLATE' does not have a property named 'MAPID'.

    Does anyone know how to fix this?
    Any help would be great!

    Thanks,
    Will
    --------------------------------------------
    Tell me and I will forget
    Show me and I will remember
    Teach me and I will learn

  2. #2
    Join Date
    May 2003
    Location
    upstate NY
    Posts
    168

    Re: VS 2008... Config Issue?

    30 views and no one has any advice?
    --------------------------------------------
    Tell me and I will forget
    Show me and I will remember
    Teach me and I will learn

  3. #3
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: VS 2008... Config Issue?

    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured