HighTechTalks DotNet Forums  

Tpyesystem problem with ASP.NET UserControl.

ASP.net Building Controls microsoft.public.dotnet.framework.aspnet.buildingcontrols


Discuss Tpyesystem problem with ASP.NET UserControl. in the ASP.net Building Controls forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Michael Lierheimer
 
Posts: n/a

Default Tpyesystem problem with ASP.NET UserControl. - 01-25-2007 , 07:48 AM






Hallo.

After migration from ASP1.0 to ASP 2.0 I have the following problem. The
migrated code does not compile. I get an error: "Cannot implicitly convert
type 'NetView.WebUI.ctlSubDevice' to 'ASP.distributor_ctlsubdevice_ascx'.
An explicit conversion exists ...."

The line in the code behind file is:
ctlSubDevice = (NetView.WebUI.ctlSubDevice) this.FindControl("ctlSubDevice");
This code it worked in ASP.NET 1.0. An analysis of the problem showed that
the type ot the ctlSubDevice, which is NetView.WebUI.ctlSubDevice, was
implict convert to ASP.distributor_ctlsubdevice_ascx. So the cast fails.

In the aspx file, the control is registered with:
<%@ Reference Control="~/distributor/ctlsubdevice.ascx" %>
<%@ Register TagPrefix="uc1" TagName="ctlSubDevice" Src="ctlSubDevice.ascx" %>

Does anybody has a solution for this problem, or did I missed something

Yours
Michael

Reply With Quote
  #2  
Old   
Nathaniel Greene
 
Posts: n/a

Default RE: Tpyesystem problem with ASP.NET UserControl. - 01-25-2007 , 09:22 PM






What is the declaration for ctlSubDevice? Did you put it in a namespace?
From the looks of it it seems like it is in it's own namespace and not the
namespace that you gave it.
all controls are by default in the ASP namespace when no namespace is
provided.

I'd check to make sure that the namespace is set and that the .ascx maps to
the proper .ascx.cs . This link may have been broken and it may have created
a default file.

Hope this helps.

"Michael Lierheimer" wrote:

Quote:
Hallo.

After migration from ASP1.0 to ASP 2.0 I have the following problem. The
migrated code does not compile. I get an error: "Cannot implicitly convert
type 'NetView.WebUI.ctlSubDevice' to 'ASP.distributor_ctlsubdevice_ascx'.
An explicit conversion exists ...."

The line in the code behind file is:
ctlSubDevice = (NetView.WebUI.ctlSubDevice) this.FindControl("ctlSubDevice");
This code it worked in ASP.NET 1.0. An analysis of the problem showed that
the type ot the ctlSubDevice, which is NetView.WebUI.ctlSubDevice, was
implict convert to ASP.distributor_ctlsubdevice_ascx. So the cast fails.

In the aspx file, the control is registered with:
%@ Reference Control="~/distributor/ctlsubdevice.ascx" %
%@ Register TagPrefix="uc1" TagName="ctlSubDevice" Src="ctlSubDevice.ascx" %

Does anybody has a solution for this problem, or did I missed something

Yours
Michael

Reply With Quote
  #3  
Old   
Michael Lierheimer
 
Posts: n/a

Default RE: Tpyesystem problem with ASP.NET UserControl. - 01-26-2007 , 01:57 AM



Hallo.

Thanks for your help, but we use the Namespace "NetView.WebUi" for all of
our controls. Below is the definition of the control.

Definition of Namespace and Class in distributor\ctlSubDevice.ascx.cs:
namespace NetView.WebUI
{
using System;
using ....
using System.Drawing;

public partial class ctlSubDevice : System.Web.UI.UserControl
{ ....

Control definition in distristributor\ctlSubDevice.ascx:
<%@ Control Language="c#" Inherits="NetView.WebUI.ctlSubDevice"
CodeFile="ctlSubDevice.ascx.cs" %>

Yours
Michael Lierheimer
MCSD, MCSD.NET, MCPD EA

Reply With Quote
  #4  
Old   
Mark Fitzpatrick
 
Posts: n/a

Default Re: Tpyesystem problem with ASP.NET UserControl. - 01-26-2007 , 10:26 AM



Michael,
What is the actual ID of the control. ctlSubDevice is the tagname
suchas <uc1:ctlSubDevice runat="server"... but is this the same as the id
assigned to the control? Often, when a control is dragged onto the designer
it will name the control to match the tagname, but add a 1 such as
ctlSubDevice1. So your tag may look like <uc1:ctlSubDevice
Id="ctlSubDevice1" runat="server"></uc1ctlSubDevice> so the name of the
control is actually ctlSubDevice.

You don't need to do any casting or use findcontrol at all. In the
codebehind just create a protected variable of the same name as the
control's id.

protected NetView.WebUI.ctlSubDevice ctlSubDevice1;


--

Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006



"Michael Lierheimer" <MichaelLierheimer (AT) discussions (DOT) microsoft.com> wrote in
message news:1DD8E686-5BF7-4807-830E-43148A6775A6 (AT) microsoft (DOT) com...
Quote:
Hallo.

After migration from ASP1.0 to ASP 2.0 I have the following problem. The
migrated code does not compile. I get an error: "Cannot implicitly convert
type 'NetView.WebUI.ctlSubDevice' to 'ASP.distributor_ctlsubdevice_ascx'.
An explicit conversion exists ...."

The line in the code behind file is:
ctlSubDevice = (NetView.WebUI.ctlSubDevice)
this.FindControl("ctlSubDevice");
This code it worked in ASP.NET 1.0. An analysis of the problem showed that
the type ot the ctlSubDevice, which is NetView.WebUI.ctlSubDevice, was
implict convert to ASP.distributor_ctlsubdevice_ascx. So the cast fails.

In the aspx file, the control is registered with:
%@ Reference Control="~/distributor/ctlsubdevice.ascx" %
%@ Register TagPrefix="uc1" TagName="ctlSubDevice"
Src="ctlSubDevice.ascx" %

Does anybody has a solution for this problem, or did I missed something

Yours
Michael



Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.