Search:
Namespaces
Discussions
.NET v1.1
Feedback
Accessing Page object from static method
Messages
Related Types
This message was discovered on
ASPFriends.com 'aspngcontrolscs' list
.
Michiel van Otegem
I have a namespace containing several control classes and a class with a static method shared between the different controls, like so:
namespace xyz
{
class abc
{
static internal MyStaticMethod()
{
//Use Page object here
}
}
class control1 : control
class control2 : control
class control3 : control
}
From the static method I want to have access to the Page object, so I can call the Trace log and Application Cache. Is there any way to do so without having to pass the Page object to the static method? Now I'm sure it's better design not to do any of this, and just make the method independent, but it reduces the need to replicate code that I need in the (related) controls. To avoid any problems, the method is marked with 'internal' so only the controls have access to it.
---
Michiel van Otegem
ASPFriends.com Moderation Team
ASPNL.com - ASP/ASP.NET/XML Teacher
http://www.aspnl.com
http://www.aspalliance.com/michiel
---
Teach Yourself XSLT in 21 Days
http://www.amazon.com/exec/obidos/ASIN/0672323184/aspnlcom-20
Reply to this message...
Paul D. Murphy
You don't need to get to the page you need to get to the current http
context. The http context exposes everything session, cache,
application.
Try this
System.Web.
HttpContext
context = System.Web.
HttpContext
.Current
If(context == null)
{
throw new
ApplicationException
("Must run in IIS context");
}
Paul
-----Original Message-----
From: Michiel van Otegem [mailto:
Click here to reveal e-mail address
]
Sent: Sunday, June 16, 2002 2:36 PM
To: aspngcontrolscs
Subject: [aspngcontrolscs] Accessing Page object from static method
I have a namespace containing several control classes and a class with a
static method shared between the different controls, like so:
namespace xyz
{
class abc
{
static internal MyStaticMethod()
{
//Use Page object here
}
}
class control1 : control
class control2 : control
class control3 : control
}
From the static method I want to have access to the Page object, so I
can call the Trace log and Application Cache. Is there any way to do so
without having to pass the Page object to the static method? Now I'm
sure it's better design not to do any of this, and just make the method
independent, but it reduces the need to replicate code that I need in
the (related) controls. To avoid any problems, the method is marked with
'internal' so only the controls have access to it.
---
Michiel van Otegem
ASPFriends.com Moderation Team
ASPNL.com - ASP/ASP.NET/XML Teacher
http://www.aspnl.com
http://www.aspalliance.com/michiel
---
Teach Yourself XSLT in 21 Days
http://www.amazon.com/exec/obidos/ASIN/0672323184/aspnlcom-20
| [aspngcontrolscs] member
Click here to reveal e-mail address
= YOUR ID |
http://www.asplists.com/asplists/aspngcontrolscs.asp
= JOIN/QUIT |
http://www.asplists.com/search
= SEARCH Archives
Reply to this message...
System.ApplicationException
System.Web.HttpContext
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us
-
Terms of Use
-
Privacy Policy
-
www.dotnet247.com