M
mohaaron
I'm trying to create a custom assembly which will be used as a helper
class for a asp.net web application. The project is a C# class library
written using .net 2.0. I need to be able to use this class library in
a 1.1 web application. Is this possible?
I related problem that I'm having is that I have created the C# class
library project and added a reference to it from my 2.0 web
application and I can't seem to use it inline in the aspx code. Can
anyone tell me what I need to do to make a dll excesable in the aspx
code?
In case it helps what I have is a class with one static property which
I would like to call in the aspx code like this.
<%= Namespace.ClassName.StatisProperty %>
This throws an error like, "the class is not available within the
context.".
class for a asp.net web application. The project is a C# class library
written using .net 2.0. I need to be able to use this class library in
a 1.1 web application. Is this possible?
I related problem that I'm having is that I have created the C# class
library project and added a reference to it from my 2.0 web
application and I can't seem to use it inline in the aspx code. Can
anyone tell me what I need to do to make a dll excesable in the aspx
code?
In case it helps what I have is a class with one static property which
I would like to call in the aspx code like this.
<%= Namespace.ClassName.StatisProperty %>
This throws an error like, "the class is not available within the
context.".