X
xenophon
I tried to put "using System.IO;" in my global.asax and Visual Studio
2005 would not let me compile. Why?
Thanks.
2005 would not let me compile. Why?
Thanks.
Juan said:"using" is code-behind syntax.
global.asax doesn't use code-behind any more.
Try using
<%@ Import Namespace="System.IO" %>
Thank goodness that they sill give you intellisense
after you import your namespace for the Global.asax
"using" is code-behind syntax.
global.asax doesn't use code-behind any more.
Try using
<%@ Import Namespace="System.IO" %>
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.