Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
Server Error in '/' 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: Ambiguous match found.

Source Error:


Line 1:  <%@ page language="C#" autoeventwireup="true" inherits="Pages_pages-defualts_Form_P, App_Web_hvwohjul" %>
Line 2:
Line 3:  <!DOCTYPE html>
Posted
Updated 5-Nov-14 0:52am
v2

1 solution

Check your files carefully: this is normally because of a name duplication.
The C# code that runs on the server will be compiled as case sensitive (i.e. Button1 is different from button1) but the resulting HTML executed by Javasscript, which isn't case sensitive. So it finds two "identical" objects and complains.

And please, in future, do not use a subject like "How to Solve this problem please help me" - we already know you have a problem and need help, or you wouldn't be asking a question. Make the subject a brief summary of you problem - ten words or so. Just enough to let us know at a glance if we know anything about the area you are having problems in.
In this case, something like "Parser Error Message: Ambiguous match found" woudl be more helpful.
 
Share this answer
 
Comments
Prasanth Radhakrishanan 28-Oct-14 4:12am    
thank u sir
OriginalGriff 28-Oct-14 4:22am    
You're welcome!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900