0

有问题的网站是this one。我设法复制了发布请求以获得结果。问题是页面索引仅从00变为11。当有大约500页时。所以看起来,页面状态存储在某个地方,并且该索引仅依赖于状态来进一步分页。需要一些暗示从哪里去。如何获得第11页的帖子? ASP.net和stateview页面(python)

我如何获得第11页的帖子? 感谢您的任何想法。 代码太长,无法包含在这里(由于有效载荷长度)。但我可以根据要求发送。

这里是分页功能

//<![CDATA[ 
var theForm = document.forms['form1']; 
if (!theForm) { 
    theForm = document.form1; 
} 
function __doPostBack(eventTarget, eventArgument) { 
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) { 
     theForm.__EVENTTARGET.value = eventTarget; 
     theForm.__EVENTARGUMENT.value = eventArgument; 
     theForm.submit(); 
    } 
} 
//]]> 

和分页链接。 enter image description here

下10页的另一个分页链接。为了表明他们看起来完全一样。 enter image description here

回答

0

看起来关于此主题的一个马丽娟步步教程here

看来,我必须提取和更新状态和验证值对于每组10页,然后使用在循环刮结果分页,并在循环中这样做。

相关问题