W
Will
I'm used to writing my code in VBscript but I have to do
this project in C#. I've written some functions on my
ASP.Net page and I'm getting an error that a namespace I
need access to has not been imported. Normally I would do
that through an Import Page Directive, but that doesn't
work with C#.
Can someone tell me how to include the System.IO Namespace
on my ASP.Net page using C#? I know if I was putting it in
a code-behind file or an assembly file I would just say:
using System.IO;
But that doesn't work in my .aspx page no matter where I
place it in the code. Please help.
this project in C#. I've written some functions on my
ASP.Net page and I'm getting an error that a namespace I
need access to has not been imported. Normally I would do
that through an Import Page Directive, but that doesn't
work with C#.
Can someone tell me how to include the System.IO Namespace
on my ASP.Net page using C#? I know if I was putting it in
a code-behind file or an assembly file I would just say:
using System.IO;
But that doesn't work in my .aspx page no matter where I
place it in the code. Please help.