how to add the namespace automatically on every new Page, Control added To a WebSite in VS2008?
when i add a new page the code behind looks like this
public partial class MyNewPage : System.Web.UI.Page
{
}
i just want the page wrapped into a namespace as below:
namespace Project.Web
{
public partial class MyNewPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e){}
}
}
this is automatically when you have a website project
maybe its trivial but i haven't find how