I am trying to make a search engine for a pariticular web site with the use of Window's Indexing Service. All of the searches that I went through only came up with examples done in ASP, but not ASP.NET.
I also know that the Indexing Service creates an OLEDB, so I know that it requires some query string commands like:
SELECT filename,path,size,characterization from SCOPE() where FREETEXT('searchtext')
I was able to get it half working, but for some reason characterization, which should display the abstract generated by Indexing Service, comes up blank.
Can anyone help me?

1 answers
<a href="http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=157"> I think you are looking for this link </a>.
answered 2 years ago by:
0
As much as I hate to say this, but that was one of the first sites that I looked at for indexing. The problem with the tutorial was that VS.NET didn't like the statements that he had for string parameters:
"<%# DataBinder.Eval(Container, "DataItem.VPath")%>"
Besides, I am very much interested in getting characterization (abstracts) working above all else.
Thanks anyway, Govinda.
answered 2 years ago by:
0
Nevermind, fixed the problem: <a href="http://www.dotnet247.com/247reference/msgs/13/67282.aspx>http://www.dotnet247.com/247reference/msgs/13/67282.aspx</a>
Apparently there was multiple quotes being used in the HTML view for the href property of the a tag:
< a href='"<%# DataBinder.Eval(Container, "DataItem.VPath")%>'>...< /a>
answered 2 years ago by:
0
This post was imported from csharpfriends, if you have a similiar question please ask it again.
All previous members have been migrated, hope you enjoy the new platform!