G
Guest
Hi,
in the Page_Load method of my web page I want to loop through all images of that page in order to resolve their path. How can that be done?
Note: I want to extract simple HTML images, not server-side image objects.
I guess I have to use something like
foreach(System.Web.UI.Control control in this.Controls)
{
string controlName = control.GetType().Name;
switch (controlName)
{
case "LiteralControl":
LiteralControl literalControl = (LiteralControl) control;
// ?????
break;
}
}
Many thanks,
P.
in the Page_Load method of my web page I want to loop through all images of that page in order to resolve their path. How can that be done?
Note: I want to extract simple HTML images, not server-side image objects.
I guess I have to use something like
foreach(System.Web.UI.Control control in this.Controls)
{
string controlName = control.GetType().Name;
switch (controlName)
{
case "LiteralControl":
LiteralControl literalControl = (LiteralControl) control;
// ?????
break;
}
}
Many thanks,
P.