Hi,
Hi, currently I developing an application in C# NET, let say i have a page call
viewrecord.aspx , in this page, i have a global variables declared before the page_Load, so all function can access the variables.
example
public string record;
public int status;
... etc..
But I found this is not a good way,
do you guys have other way to declare global variables, and not to declare in the page (upper part)?
Hi, currently I developing an application in C# NET, let say i have a page call
viewrecord.aspx , in this page, i have a global variables declared before the page_Load, so all function can access the variables.
example
public string record;
public int status;
... etc..
But I found this is not a good way,
do you guys have other way to declare global variables, and not to declare in the page (upper part)?
Comment