I want to create two partial classes for the single aspx file. I am using vs2005 dotnet 2.0. i could not able to access method from one partial class in another partial classes.
Can anybody assist me.
Partial class 1 : my main aspx page
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e) { }
private void meth() { }
}
Partial class : 2
public class _Default : System.Web.UI.Page
{
public _Default() { }
}
i could not able to access meth method in partial class 2