need hep on parser error

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,
I've a problem in accessing user controls when I deploy the application in
the production server..
I'm receiving the following error...

Ambiguous match found.
Source Error:
Line 1: <%@ Control Language="c#" AutoEventWireup="false"
Codebehind="CommViewEvents.ascx.cs"
Inherits="HydPortal.UserControls.CommViewEvents1

Can anyone help out in thi regard....
 
I had the same problem a few days ago. There seems to be a difference in
how the members are identified between a develoment project and a
deployed project.

Make sure that you don't have any controls or public variables that
differ only by case. For an example the control with id="UserList" will
clash with the public variable userList.
 
Back
Top