本文介绍了从ASPX页面获取iFrame源的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我有一个i框架.它的src是在pageload中设置的.我需要读取框架的html源以获取一些数据s.我如何实现这一点.我尝试了以下代码,但没有使用.有什么办法吗?

页面加载

Hi,

I have got an i Frame.It''s src is set from in pageload.I need to read the html source of the frame in order to get some data s.How can i implement this.I tried the following code but of no use.Is there any way?

Pageload

Pageload
frameHoroscope.Attributes.Add("src", "");
Readdata();

void Readdata()
    {
        string data = frameHoroscope.InnerHtml;
     }

推荐答案


这篇关于从ASPX页面获取iFrame源的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 22:35