R
Ramesh
hi,
I have created one Component using C#. it have once
class name is BusinessObject. In this class i have one
method "CreatedRecords". When i make the build it created
ComponentName.dll file in the obj\Debug and bi\Debug
directory.
Then i have executed gacutil /i ComponentName.dll
It displayed message saying that Cache successfully added.
In my Web application I have selected this dll reference.
(i tried both obj\debug\Compnentname.dll and
bin\Debug\Componentname.dll)
when i create the instance i have used following statment.
CompnentName.BusinessObject myTest = new
CompnentName.BusinessObject();
But when i try to access CreateRecords method by using
following statment
myTest.CreateRecords();
it is not able to list the method name. In the component
services also CreateRecords method not listed. I have
created this method using "Public" key word in Component.
So it should list this method name when i use instance of
this object. Can any body knows about this problem.?
-Ramesh
Thanks
Ramesh
I have created one Component using C#. it have once
class name is BusinessObject. In this class i have one
method "CreatedRecords". When i make the build it created
ComponentName.dll file in the obj\Debug and bi\Debug
directory.
Then i have executed gacutil /i ComponentName.dll
It displayed message saying that Cache successfully added.
In my Web application I have selected this dll reference.
(i tried both obj\debug\Compnentname.dll and
bin\Debug\Componentname.dll)
when i create the instance i have used following statment.
CompnentName.BusinessObject myTest = new
CompnentName.BusinessObject();
But when i try to access CreateRecords method by using
following statment
myTest.CreateRecords();
it is not able to list the method name. In the component
services also CreateRecords method not listed. I have
created this method using "Public" key word in Component.
So it should list this method name when i use instance of
this object. Can any body knows about this problem.?
-Ramesh
Thanks
Ramesh