3
votes

I was trying to access < script type='text/javascript' ....>< / script > existing within Head tag.

What I was doing to achieve that,

    foreach (Control ctrl in Header.Controls)
    {          
            Response.Write(ctrl.GetType() + "<br/>");
    }

It gives me the reference of "title", "meta" and "literal" control. How can I get the control and get the "src" attribute of that tag.

1

1 Answers

3
votes

Does your <script> tag have runat="server"?