public partial class Prod : System.Web.UI.Page
{
}
Here i have another class file called clsdbconnection which has connection string function called getconnectiondb().
To use that getconnectiondb() function i need to use the class in the present class prod.
How to use the class, I tried all these ways but it gives error
public partial class Prod : clsdbconnection : System.Web.UI.Page
{
}
public partial class Prod , clsdbconnection : System.Web.UI.Page
{
}
public partial class Prod : clsdbconnection , System.Web.UI.Page
{
}