How to loop through all images of a page

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,071
Latest member
MetabolicSolutionsKeto

Latest Threads

Top