Then my question is how to strong name an assembly that contains aspx
web page(s). I understand the runtime creates a assembly of the aspx
pages just before executing it.
Can I strong name that somehow?
The reason I ask this is strong names are really valuable to protect
code from hacking attempt but I can't use SecurityAction.Demand in my
class libraries because I could not strong name my ASPX pages (They do
full stack walk).
I know I can use LinkDemand or Assert but I also know they are less
secure than Demand / full stack walk.
SO, is there any way to strong name a ASPX assembly?