?
=?ISO-8859-1?Q?Morten_N=F8rgaard?=
Hello everyone,
I feel really dumb asking this, but I can't work it out. Searching
gives me nothing, I'm down to thinking it's a bug in Visual Studio 2005,
but of course it probably isn't...
I want to add a namespace to my aspx file. I do this:
using System;
namespace test
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
.... but I'm told all sorts of page errors. If I remove the
namespace-thing, nothing.
How can I add a namespace to my code-behind?
Thanks a million in advance,
Morten
I feel really dumb asking this, but I can't work it out. Searching
gives me nothing, I'm down to thinking it's a bug in Visual Studio 2005,
but of course it probably isn't...
I want to add a namespace to my aspx file. I do this:
using System;
namespace test
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
.... but I'm told all sorts of page errors. If I remove the
namespace-thing, nothing.
How can I add a namespace to my code-behind?
Thanks a million in advance,
Morten