I have a project in asp.net web form and I want to search all files which contains "~/Products"
with ctrl+shift+f but I want to exclude a file which is Server.Transfer("~/Products")
. I tried regex but it did not work. How Can I do this with regex or something else?
I tried
*~/Products*;!*Server.Transfer("~/Products")*;