|
|
 |
RE: FN-FORUM: ASP to ASP.NET
date posted 27th January 2006 14:52
Hi Damon,
As I don't know C# I'm having to use an online translater to VB and it's
telling me there's something wrong with the code snippet you sent but I
don't know what it is.
Craig
-----Original Message-----
private path = null
private void Load_Page(object sender, EventArgs e)
{
// could set path variable directly but more correct to use the property
pathVar = "some text";
}
public string pathVar
{
get { return path; }
set { path = value; }
}
|
 |
|