I’ve got a small cookie-leaving aspx script.
I’m wondering if it’s faster to just do it as an
or
Server.Execute (same script)
or does it not matter?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Server.Executeshould cause the server to cache the script bytecode once, which means, theoretically, you should realize a net performance increase as compared to simply extending a running script withinclude.