B
Brian K. Williams
If I have a Web form with a Label and I have separate class file as below,
how can I write to the label from the class (clsTest)
Web Form:
using BKW.test;
namespace BKW
{
public class frmTest : System.Windows.Forms.Form
{
private System.Windows.Forms.Label lblDescription;
public class frmFileManagerTest : System.Windows.Forms.Form
{
Code...
}
}
Class File:
namespace BKW.test
{
public class clsTest
{
}
}
Thanks in advance.
-Brian
how can I write to the label from the class (clsTest)
Web Form:
using BKW.test;
namespace BKW
{
public class frmTest : System.Windows.Forms.Form
{
private System.Windows.Forms.Label lblDescription;
public class frmFileManagerTest : System.Windows.Forms.Form
{
Code...
}
}
Class File:
namespace BKW.test
{
public class clsTest
{
}
}
Thanks in advance.
-Brian