Posted on: 6/28/2014 9:20:26 AM | Views : 326

suppose I hv one page called ABC.aspx
public partial class ABC: System.Web.UI.Page { } I want to create another partial class ABC in another File. For this I added one class file XYZ.cs,I wrote,
public partial class ABC { } But it is not working/compiling. What is the problem ? I heard that you cannot create this type of partial class in website.I have to convert it to web application . Any Comment ? Thanks

Go to the complete details ...