BugNET

Open source issue tracking & project management
Welcome to BugNET Register | Login |

BugNET Forums

 
ForumForumSupportSupportInstallation pr...Installation pr...Server 2008: The server tag Server 2008: The server tag 'asp:UpdateProgress' is ambiguous.
Previous Previous
 
Next Next
New Post
 6/25/2008 4:03 PM
 
 Modified By hoss  on 6/25/2008 4:07:07 PM

After working out the web.config problems, I got the install page to load and it installed everything without issue. DB looks good. But when I try to use bugnet (http://localhost/bugnet/) I get the below error. I'm pretty much at the end of my limited ASP.NET/IIS knowledge. :) Any help is greatly appreciated!

Server Error in '/bugnet' Application.

Parser Error

Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: The server tag 'asp:UpdateProgress' is ambiguous. Please modify the associated registration that is causing ambiguity and pick a new tag prefix.

Source Error:

[No relevant source lines]

Source File: none    Line: 0

 


 

Version Information: Microsoft .NET Framework Version:2.0.50727.1434; ASP.NET Version:2.0.50727.1434

New Post
 5/4/2009 11:45 AM
 

This may be caused because you upgraded your .Net framework  (3.5?) or you version is different that what Bugnet was compiled using.
What you will need to do is update the version number etc to all assembly references to System.Web.Extensions
Very possibly to this: assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"

Because Bugnet is pre-compiled you will need to provide some version mapping.
Below is an axample of what you will need to add.

<configuration>
<runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly>
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly></assemblyBinding>
    </runtime>
               
</configuration>

New Post
 5/4/2009 12:11 PM
 

I need to clarify one thing. The above adjustments need to happen in the Web.config.

Previous Previous
 
Next Next
ForumForumSupportSupportInstallation pr...Installation pr...Server 2008: The server tag Server 2008: The server tag 'asp:UpdateProgress' is ambiguous.

Forum Policy

These Discussion Forums are dedicated to the discussion of the BugNET issue tracker.

For the benefit of the community and to protect the integrity of the project, please observe the following posting guidelines:
1. No Advertising.
2. No Flaming or Trolling.
3. No Profanity, Racism, or Prejudice.
4. Site Moderators have the final word on approving/removing a thread or post or comment.
5. English language posting only, please.