> Whenever you compile code the compiler does not check the > inline scripts. This code is interpeted.
Umm, no. It's compiled. You can examine the generated assembly. Put this line in your ASPX to find the generated assembly: <%= this.GetType().Assembly.Location %> Then open it with ildasm.exe. You'll see the compiled code. -Brock http://staff.develop.com/ballen =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com
