|
|
 |
RE: FN-FORUM: ASP to ASP.NET
date posted 27th January 2006 14:28
Thanks Damon,
Setting a property did it nicely. As the properties have to be set up
outside the Page_Load sub is there anyway of setting their return values
from within the Page_Load sub to make them dynamic? I just wondered as it
would help a lot with the task I've got.
Many thanks,
Craig
-----Original Message-----
>I have the following in classic asp that I need to re-create in ASP.NET:-
>""
You could try the Repeater Control if you have a data set to work from.
The will work in ASP.Net just set up a property in the code
called pathVar
public string pathVar
{
get { return path; }
}
Alternatively use the asp:hyperlink control
HTH
Damon
|
 |
|