/ Published in: C#
                    
                                        uses a PageArea template to extract data from each page in the search results, but I will cancel the PageArea template if it is not on the last page.
I add a condition script to the template. The condition script checks to see whether there is a Next Page link on the webpage and, if so, cancels the template element.
                I add a condition script to the template. The condition script checks to see whether there is a Next Page link on the webpage and, if so, cancels the template element.
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
 using System; 02.using mshtml; 03.using VisualWebRipper; 04.public class Script 05.{ 06. public static bool IsCondition(WrConditionArguments args) 07. { 08. try 09. { 10. if(args.InternalDataRow["navigationLink"] != "") 11. return false; 12. return true; 13. } 14. catch(Exception exp) 15. { 16. args.WriteDebug(exp.Message); 17. return true; 18. } 19. } 20.}
Comments
                    Subscribe to comments
                
                