For searching a List if I use this URL and it works fine
[myServer]/SitePages/testList/AllItems.aspx?FilterField1=Title&FilterValue1=one&FilterField2=value&FilterValue2=start
That means for multiple columns I can use FilterField1,FilterField2 and so on.
But I don't know the exact values to be searched and so I tried to use FilterName. So I tried the following URL which doesn't work
[myServer]/SitePages/testList/AllItems.aspx?FilterName1=Title&FilterMultiValue1=*on*&FilterName2=value&FilterMultiValue2=*star*
If I use single FilterName([myServer]/SitePages/testList/AllItems.aspx?FilterName=Title&FilterMultiValue=*on*) it works fine.
Can anyone tell me how to use multiple FilterName in URL?