M
Miguel Dias Moura
Hello,
I am calling an ASP.NET / VB as follows:
search.aspx?search=asp%20book%20london
Then I create a string with the keywords like this:
Dim keywords() As String =
Request.QueryString("search").Split(CChar(""))
It's not working. What am I doing wrong?
I also need to create a new string. Something as follows:
newString = "CONTAINS (*, 'keyword(1)') AND CONTAINS (*, 'keyword(2)')
AND ... CONTAINS (*, 'keyword(i)')"
I will need some kind of loop.
Can someone tell me what am I doing wrong on first code line and how to
create newString?
Thanks,
Miguel
I am calling an ASP.NET / VB as follows:
search.aspx?search=asp%20book%20london
Then I create a string with the keywords like this:
Dim keywords() As String =
Request.QueryString("search").Split(CChar(""))
It's not working. What am I doing wrong?
I also need to create a new string. Something as follows:
newString = "CONTAINS (*, 'keyword(1)') AND CONTAINS (*, 'keyword(2)')
AND ... CONTAINS (*, 'keyword(i)')"
I will need some kind of loop.
Can someone tell me what am I doing wrong on first code line and how to
create newString?
Thanks,
Miguel