I know this must be a very easy answer but I just can't figure it out.
I am developing a web application using VS.Net and C#. I under stand how to use other System objects such as database communication.
Now I have written my own class. and VS.Net created the
My class is called ComFuncs. I have a ComFuncs constructor, and a
function.
What I am having trouble understanding is how I use this class and function from my default.aspx.cs page.
Thanks,
Gabe
I am developing a web application using VS.Net and C#. I under stand how to use other System objects such as database communication.
Code:
using System.Data.SqlClient;
Code:
namespace GabeC
My class is called ComFuncs. I have a ComFuncs constructor, and a
Code:
public string isOpen(int myVariable)
What I am having trouble understanding is how I use this class and function from my default.aspx.cs page.
Thanks,
Gabe