S
Steven Spits
Hi,
When I create a new UserControl called MyUserControl.ascs in the folder
/MyWebApp/SubDir, VS 2005 creates:
public partial class MyWebApp_SubDir_MyUserControl :
System.Web.UI.UserControl
{
}
However, I prefer the VS 2003 way:
namespace MyWebApp.SubDir
{
public class MyUserControl : System.Web.UI.UserControl
{
}
}
Is there a way to change this behaviour?
Steven
- - -
When I create a new UserControl called MyUserControl.ascs in the folder
/MyWebApp/SubDir, VS 2005 creates:
public partial class MyWebApp_SubDir_MyUserControl :
System.Web.UI.UserControl
{
}
However, I prefer the VS 2003 way:
namespace MyWebApp.SubDir
{
public class MyUserControl : System.Web.UI.UserControl
{
}
}
Is there a way to change this behaviour?
Steven
- - -