G
Guest
I am still having problems with sessions crossing over from other sessions. What I mean by this is that Mary may get just some or all of Renae’s information. I think that what is going on with this problem is the way that I have the solution setup
I have this .NET CEmployees class that I am storing into a session object. The sessions are stored using SQL Server. I also have this ActiveX DLL file created in VB6. The ActiveX DLL file has many classes and collections that I will be using through a .NET project. The worker process does not recycle. A summery of the solution tree is below
Solution ‘Solutionâ€
BusinessObjectProjec
Reference
ActiveXDLLFil
CEmployee.v
CPosition.v
CColPositions.v
WebProjec
Reference
BusinessObjectProjec
ActiveXDLLFil
WebForm1.asp
WebForm2.asp
WebForm3.asp
In my CPosition and CColPositions classes I have inherited the classes that are in ActiveXDLLFile by
Namespace Employe
Public Class CPositio
Inherits ActiveXDLLFile.clsPositionClas
End Clas
Namespace Employe
Public Class CColPosition
Inherits ActiveXDLLFile.colPositionsClas
End Clas
End Namespac
And in the CEmployee class I have
Namespace Employe
<Serializable()>
Public Class CEmploye
With all the Private Variables, Public Properties and constructor
End Clas
End Namespac
And in the WebForm.aspx pages I get the classes by
Dim m_Position As New CPositio
This leads to another question. If I set up a solution like this how can I use the colPositions through CColPositions using a For…Next loop? I asked this question before but the trail went cold
Is this the correct way of setting this project up? What else should I be looking at to solve this problem
Thanks
Charle
I have this .NET CEmployees class that I am storing into a session object. The sessions are stored using SQL Server. I also have this ActiveX DLL file created in VB6. The ActiveX DLL file has many classes and collections that I will be using through a .NET project. The worker process does not recycle. A summery of the solution tree is below
Solution ‘Solutionâ€
BusinessObjectProjec
Reference
ActiveXDLLFil
CEmployee.v
CPosition.v
CColPositions.v
WebProjec
Reference
BusinessObjectProjec
ActiveXDLLFil
WebForm1.asp
WebForm2.asp
WebForm3.asp
In my CPosition and CColPositions classes I have inherited the classes that are in ActiveXDLLFile by
Namespace Employe
Public Class CPositio
Inherits ActiveXDLLFile.clsPositionClas
End Clas
Namespace Employe
Public Class CColPosition
Inherits ActiveXDLLFile.colPositionsClas
End Clas
End Namespac
And in the CEmployee class I have
Namespace Employe
<Serializable()>
Public Class CEmploye
With all the Private Variables, Public Properties and constructor
End Clas
End Namespac
And in the WebForm.aspx pages I get the classes by
Dim m_Position As New CPositio
This leads to another question. If I set up a solution like this how can I use the colPositions through CColPositions using a For…Next loop? I asked this question before but the trail went cold
Is this the correct way of setting this project up? What else should I be looking at to solve this problem
Thanks
Charle