Click to See Complete Forum and Search --> : ASP.NET (Help Please)


damica
August 21st, 2002, 08:31 PM
Hello Again:

I want to thank all that reply.

I am trying to learn ASP and ASP.NET, so please be patient.

I have the NET framework installed and have ran some of the examples that I have found as a leaning guide. However when I try to run this one (which is a control that I want to use later) I get an error that the cc1: tag cannot be read by the Phasrer. Here is the code.

<cc1:C1CartCheckout id="C1CartCheckout1" runat="server">
</cc1:C1CartCheckout>

The actural control name is c1.web.c1paypal.dll do you have to register this control? If so how? and with what?

The rest of the code I understand and feel it is OK but I have never see the cc1: tag and so far can't find out much about it.

Thank you for your time.

David M. Camp

anupam kant
August 26th, 2002, 01:20 AM
please confirm that you have used this line at the top of the page:

<%@ Register TagPrefix="cc1" nameSpace="--NAMESPACE HERE--" Assembly="--DLL NAME--"%>

there is no need to register a dll in .NET. but it must be placed under BIN subdirectory of the shared directory.

hope it helps:)