I am able to Restrict Share Point Search programatically to a List and its working well. Below is how i am restricting to list.
var searchWord = KeyWord + "* AND PATH:" +listUrl
Now i want to restrict to just a List View.
var searchWord = KeyWord + "* AND PATH:" +listUrl+"/"+ListViewName
I tried adding name of List view to Search Word however its not working, any ideas???????????
**Note: I can't use CAML query which would have made my life easier, just not in this case though **
var searchWord = KeyWord + "* AND PATH:" +listUrl
Now i want to restrict to just a List View.
var searchWord = KeyWord + "* AND PATH:" +listUrl+"/"+ListViewName
I tried adding name of List view to Search Word however its not working, any ideas???????????
**Note: I can't use CAML query which would have made my life easier, just not in this case though **