I have a web form that I want to duplicate inside a visual studio2013 project , keep all the same functionality , whereas my orginal page is First.aspx with first.aspx.cs code behind. I went to make the same exact page and call it FirstNew.aspx with firstnew.aspx.cs
. the code behind would use the same exact methods that the partial class First contains. But doing this inside visual studio , i get a clash of class/method/object names. What is the best way of doing this?
Thanks
Ned